如何用fso调用某个目录下的asp文件并动行这个asp文件
我想在index.asp里面调用a文件里面b.asp这个文件并可以动行b.aspfso可以实现吗<!--#includefile=""-->不要这种调用这个不可以用变量...
我想在index.asp里面调用a文件里面b.asp这个文件 并可以动行b.asp
fso可以实现吗
<!--#include file=""--> 不要这种调用 这个不可以用变量 展开
fso可以实现吗
<!--#include file=""--> 不要这种调用 这个不可以用变量 展开
2个回答
展开全部
你可以用 Server.MapPath(string path)来实现
返回与Web服务器上的指定虚拟路径相对应的物理文件路径
<%=Server.MapPath(Request.ServerVariables["PATH_INFO"])%>
<%= Server.MapPath("/")%>
<%= Server.MapPath("")%>
<%=Server.MapPath(".")%>
<%= Server.MapPath("../")%>
<%= Server.MapPath("..")%>
以上的代码在http://localhost/EnglishClub/manage/WebForm1.aspx页面
运行结果:
C:\Inetpub\wwwroot\EnglishClub\manage\WebForm1.aspx
C:\Inetpub\wwwroot\
C:\Inetpub\wwwroot\EnglishClub\manage
C:\Inetpub\wwwroot\EnglishClub\manage
返回与Web服务器上的指定虚拟路径相对应的物理文件路径
<%=Server.MapPath(Request.ServerVariables["PATH_INFO"])%>
<%= Server.MapPath("/")%>
<%= Server.MapPath("")%>
<%=Server.MapPath(".")%>
<%= Server.MapPath("../")%>
<%= Server.MapPath("..")%>
以上的代码在http://localhost/EnglishClub/manage/WebForm1.aspx页面
运行结果:
C:\Inetpub\wwwroot\EnglishClub\manage\WebForm1.aspx
C:\Inetpub\wwwroot\
C:\Inetpub\wwwroot\EnglishClub\manage
C:\Inetpub\wwwroot\EnglishClub\manage
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询