网站首页 > 书籍教程 > ASP教程 > 对ASP动态包含文件方法的改进

对ASP动态包含文件方法的改进

  • 作者:互联网
  • 时间:2009-06-25 17:39:54

  ASP 本身不支持动态包含文件,现在的动态包含是通过 FSO 把被包含的文件合并到主文件里再运行。以下也有把形如 的普通包含文件方式称作“传统引用”,用函数实现的动态包含文件称作“动态引用”。常见的程序如下:

Function include(filename)
Dim re,content,fso,f,aspStart,aspEnd

set fso=CreateObject("Sc***ting.FileSystemObject")
set f=***.OpenTextFile(se***r.mappath(filename))
co***nt=f.ReadAll
f.close
set f=nothing
set fso=nothing

set re=new RegExp
re***ttern="^s*="
aspEnd=1
aspStart=inStr(aspEnd,content,"<%")+2
do while aspStart>aspEnd+1
Re***nse.write Mid(content,aspEnd,aspStart-aspEnd-2)
aspEnd=inStr(aspStart,content,"%>")+2
Execute(re***place(Mid(content,aspStart,aspEnd-aspStart-2),"Re***nse.Write "))
aspStart=inStr(aspEnd,content,"<%")+2
loop
Re***nse.write Mid(content,aspEnd)
set re=nothing
End Function 

  使用范例:include("yo***c.asp")

  但这处函数在处理补包含的文件中还有包含文件时就不灵了。我在以上函数的基础上改进出来如下函数,在被包含文件中还有普通的包含文件 也可正常运行。

Function includeconvert(oRegExp, strFilename, strBlock)
Dim incStart, incEnd, match, oMatches, str, code
'用提取ASP代码的相同方式提取出include 部分的文件名,其余部分原样输出
code = ""
incEnd = 1
incStart = InStr(incEnd,strBlock,"<--#,incStart是从")+3
oR***xp.pattern="(w+)=""([^""]+)""" '匹配 file="fi***ame.ext" 或 virtual="vi***alname.ext",捕捉类型及文件名两个子串
Set oMatches = oR***xp.Execute(Mid(strBlock,incStart,incEnd-incStart-3))
Set match = oMatches(0) '确定只有一组捕捉时,要得到这一组匹配的子串,可以这样做,省去用 For Each match In oMatches …… Next
code = code & include(Mid(strFilename, 1, InStrRev(strFilename, "/")) & ma***.SubMatches(1)) 'Mid(filename, 1, InStrRev(filename, "/")) 是在被引用的子文件名有路径时,把路径提取出来,加在子文件中传统引用的文件名前面,以找到正确的打开文件路径,因为动态引用时的文件路径是相对主文件而言的。要第二个匹配子串用SubMatches(1)
incStart = InStr(incEnd,strBlock,"