ASP中利用execute實現(xiàn)動態(tài)包含文件的方法
在asp中include文件形如 #include file=function.asp,這是最簡單也是最常用的包含文件方法,青島星網(wǎng)下面跟大家分享:根據(jù)不同的需求,包含不同的文件的函數(shù)。
asp動態(tài)包含文件的實現(xiàn)函數(shù)
function include(filename) dim re,content,fso,f,aspstart,aspend set fso=createobject("scripting.filesystemobject") set f=fso.opentextfile(server.mappath(filename)) content=f.readall f.close set f=nothing set fso=nothing set re=new regexp re.pattern="^\s*=" aspend=1 aspstart=instr(aspend,content,"<%")+2 do while aspstart>aspend+1 response.write mid(content,aspend,aspstart-aspend-2) aspend=instr(aspstart,content,"%\>")+2 execute(re.replace(mid(content,aspstart,aspend-aspstart-2),"response.write ")) aspstart=instr(aspend,content,"<%")+2 loop response.write mid(content,aspend) set re=nothing end function
其實是寫一個動態(tài)包含的函數(shù),這樣每次調(diào)用時候代碼簡潔,也方便,使用方法:
include("***.asp")'注意,這里的include是函數(shù)名哦,不要搞混哦。
下面是其他網(wǎng)友的補充大家參考一下
asp中,include file/virtual 是優(yōu)先腳本代碼處理的,所以無法使用include動態(tài)包含asp文件。我們可以使用execute函數(shù)動態(tài)執(zhí)行所需代碼。
方法:
execute(asp代碼)
例子:(vbcrlf為換行符)
execute("class clsabc"&vbcrlf&"public function output"&vbcrlf&"response.write 123"&vbcrlf&"end function"&vbcrlf&"end class")
dim objabc set objabc = new clsabc objabc.output set objabc = nothing
使用時可以用從文件或數(shù)據(jù)庫讀取出asp代碼再執(zhí)行,注意,所執(zhí)行的代碼中不應(yīng)包含<%和%>
注意不要與server.execute混淆,server.execute參數(shù)為asp虛擬路徑,并且使用該函數(shù)不但不能動態(tài)聲明class類,甚至不可以給主程序段的變量賦值。
例子:
main.asp
dim strabc,objabc strabc = "test" server.execute("sub.asp") response.write strabc set objabc = new clsabc objabc.output set objabc = nothing
sub.asp
strabc = "execute" class clsabc public function output response.write "class" end function end class
執(zhí)行main.asp后,將僅輸出test,而objabc則不能實例化。
相關(guān)文章
- 易心asp分頁類 v1.0
- ASP實現(xiàn)緩存類無錯版
- ASP中類Class相關(guān)內(nèi)容的整理資料
- asp的通用數(shù)據(jù)分頁類
- asp:debug類調(diào)試程序
- 捌度空間 緩存類
- VBS、ASP代碼語法加亮顯示的類
- cls_main.asp第1/3頁
- 日期函數(shù)擴(kuò)展類Ver0.1.1
- newasp中main類
- ASP怎么談到應(yīng)用到類的?
- 檢測函數(shù) asp class
- ASP中一個字符串處理類
- 葉子asp分頁類
- ASP高亮類
- Object對象的一些的隱藏函數(shù)介紹
- 文件、目錄,文本文件等多種操作類
- ASP 類專題
- 一個ACCESS數(shù)據(jù)庫訪問的類第1/3頁
- 分頁類,異常類