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

2016-02-19 19:30 3 1 收藏

今天图老师小编要向大家分享个对ASP动态包含文件方法的改进教程,过程简单易学,相信聪明的你一定能轻松get!

【 tulaoshi.com - Web开发 】

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

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

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/webkaifa/)

  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 aspStartaspEnd+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 

  使用范例:include("youinc.asp")

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

  Function includeconvert(oRegExp, strFilename, strBlock)
  Dim incStart, incEnd, match, oMatches, str, code
  '用提取ASP代码的相同方式提取出include 部分的文件名,其余部分原样输出
  code = ""
  incEnd = 1
  incStart = InStr(incEnd,strBlock,"!--#include ") + 13 '要找个目标字符串!--#include 正好是13个字符,所以要+13
  Do While incStartincEnd+12 '两个引用间距最小就是连续的----#,incStart是从!--#include起数13个字符,所以要比前一个incEnd要至少多 13-1 得到的incEnd+12的条件
  str = Mid(strBlock,incEnd,incStart-incEnd-13)
  str = Replace(str, """", """""") '把单个双引号换成两个双引号
  str = Replace(str, VbCr, "")
  str = Replace(str, VbLf, "")
  str = Replace(str, VbCrLf, "")
  code = code & VbCrLf & "Response.Write """ & str & """"
  incEnd=InStr(incStart,strBlock,"--")+3
  oRegExp.pattern="(w+)=""([^""]+)""" '匹配 file="filename.ext" 或 virtual="virtualname.ext",捕捉类型及文件名两个子串
  Set oMatches = oRegExp.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, "/")) & match.SubMatches(1)) 'Mid(filename, 1, InStrRev(filename, "/")) 是在被引用的子文件名有路径时,把路径提取出来,加在子文件中传统引用的文件名前面,以找到正确的打开文件路径,因为动态引用时的文件路径是相对主文件而言的。要第二个匹配子串用SubMatches(1)
  incStart = InStr(incEnd,strBlock,"!--#include ")+13
  Loop
  str = Mid(strBlock,incEnd)
  str = Replace(str, """", """""") '把单个双引号换成两个双引号
  str = Replace(str, VbCr, "")
  str = Replace(str, VbLf, "")
  str = Replace(str, VbCrLf, "")
  code = code & VbCrLf & "Response.Write """ & str & """"
  includeconvert = code
  End Function
  Function include(filename)
  Dim re, content, fso, f, aspStart, aspEnd, code
  Set fso=CreateObject("scripting.FileSystemObject")
  Set f=fso.OpenTextFile(Server.MapPath(filename))
  content=f.ReadAll
  f.close
  Set f=nothing
  Set fso=nothing

  code = ""
  aspEnd=1
  aspStart=InStr(aspEnd,content,"%")+2
  Set re=new RegExp
  Do While aspStartaspEnd+1
  '传统引用!--#inclde 肯定是在ASP代码段以外的,所以先转。
  code = code & includeconvert (re, filename, Mid(content,aspEnd,aspStart-aspEnd-2))
  aspEnd=InStr(aspStart,content,"%")+2
  re.pattern="^s*=" '这段正则替换原来是把 % = str % 换回成标准的 %Response.Write str %
  code = code & VbCrLf & re.replace(Mid(content,aspStart,aspEnd-aspStart-2),"Response.Write ") 'ASP块前面再加回车换行,以避免连接块之间多个 Response.Write在同一行的错误
  aspStart=InStr(aspEnd,content,"%")+2
  Loop
  code = code & includeconvert (re, filename, Mid(content,aspEnd))
  Set re=nothing
  include = code
  End Function

  方便起见,以上函数最终返回的是整合了包含文件的整个 ASP 代码,使用时还要再用 Execute 执行之,即使用时需要:Execute(include("file.asp"))。

  以上函数对被包含文件与主文件同一路径时测试通过,未对被包含文件与主文件路径不同的情况做进一步容错,时间有限,欢迎有兴趣的朋友提出意见和改进。

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/webkaifa/)

来源:https://www.tulaoshi.com/n/20160219/1621156.html

延伸阅读
标签: ASP
  <form method="post" name="myform" action="?action=backupdatabase" 选择操作:<INPUT TYPE="radio" NAME="act" id="act_backup"value="backup"<label for=act_backup备份</label <INPUT TYPE="radio" NAME="act" id="act_restore" value="restore"<label for=act_restore恢复</label <br数据库名:<IN...
标签: ASP
  用ASP打开远端MDB文件 如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息: Microsoft OLE DB Provider for ODBC Drivers error ’80004005’ [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file ’(unknown)’. It is already ...
标签: ASP
  1.动态表单的界面,从csdn论坛上参考 <html <head <title无标题文档</title <meta http-equiv="Content-Type" content="text/html; charset=gb2312" <script language="javascript" var curRow=null; var y=1; function selectRow(){ var e=window.event; var tr1=e.srcElement; if(curRow) curRow.bgColor="#FFFF...
标签: ASP
  <%@ Language=VBScript % <% '函数1: '将字符串转换成二进制 Function StoB(varstr) str2bin = "" For i = 1 To Len(varstr) varchar = Mid(varstr, i, 1) str2bin = str2bin & ChrB(AscB(varchar)) Next StoB = str2bin End Function '函数2: '将每两个字符前面加"&H"表示是十六进制,然后把&qu...
标签: Web开发
asp的formatNumber再处理类似 25/5的值时,结果是 5.00  处理类似 28/8的值时,结果是3.50  改进一下,去掉没用的0  让结果分别是 5和3.5 代码如下: Function fm(nb) If IsNumeric(nb) Then Dim a a=FormatNumber(nb,2,-1) If Right((a+""),2)=00 Then fm=CL...

经验教程

84

收藏

59
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部