根據需要動態include不同的檔案 (轉)

worldblog發表於2007-12-12
根據需要動態include不同的檔案 (轉)[@more@]

受" --&gt 宏限制
必須存在該並且會預先編譯(不管前面是否加以條件)

經常有這樣的要求,根據不同的需求要求include不同的檔案
如各個人的不同設定,所以要求能動態include檔案。

程式碼如下:

Function include(filename)
 Dim re,content,,f,aspStart,aspEnd
 
 set fso=Create("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," 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," l
 Response.write Mid(content,aspEnd) 
 set re=nothing
End Function

使用範例:

include("youinc.asp")


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-991784/,如需轉載,請註明出處,否則將追究法律責任。

相關文章