如何在ASP页面动态Inclue文件?_ASP教程-查字典教程网
如何在ASP页面动态Inclue文件?
如何在ASP页面动态Inclue文件?
发布时间:2016-12-29 来源:查字典编辑
摘要:受宏限制必须存在该文件并且会预先编译(不管前面是否加以条件)经常有这样的要求,根据不同的需求要求include不同的文件如各个人的不同设置,...

受<!#includefile="filename.asp"-->宏限制

必须存在该文件并且会预先编译(不管前面是否加以条件)

经常有这样的要求,根据不同的需求要求include不同的文件

如各个人的不同设置,所以要求能动态include文件。

代码如下:

Functioninclude(filename)

Dimre,content,fso,f,aspStart,aspEnd

setfso=CreateObject("Scripting.FileSystemObject")

setf=fso.OpenTextFile(server.mappath(filename))

content=f.ReadAll

f.close

setf=nothing

setfso=nothing

setre=newRegExp

re.pattern="^s*="

aspEnd=1

aspStart=inStr(aspEnd,content,"<%")+2

dowhileaspStart>aspEnd+1

Response.writeMid(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.writeMid(content,aspEnd)

setre=nothing

EndFunction

使用范例:

include("youinc.asp")

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新ASP教程学习
    热门ASP教程学习
    编程开发子分类