如何将一个HTML页面嵌套在多个动态页面

如题所述

解决方法:FSO调用方法
本方法采用变通的方法实现同样的包含功能。即FSO调用。代码如下:
<%
FunctiongetFileContents(strIncludeFile)'函数:读取包含文件内容
DimobjFSO,objText,strPage
SetobjFSO=Server.CreateObject("Scripting.FileSystemObject")'调用FSO对象
SetobjText=objFSO.OpenTextFile(Server.MapPath(strIncludeFile))
getFileContents=objText.ReadAll
objText.Close
SetobjText=Nothing
SetobjFSO=Nothing
EndFunction

dimp
p=request("p")'2种方式:request.form,request.querystring
response.writegetFileContents("map"&p&".asp")
%>
利用fso函数读取包含文件的内容,然后用response.write把包含文件的内容输出,即实现和include命令同样的功能了,轻松实现自由输出诸如map1.asp,map2.asp…等文件内容了。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答