ASP取得当前文件名和URL

发布时间:2010年12月20日 作者:未知 查看次数:1211

ASP取得当前文件名和URL


ASP取得当前文件名:

<%
Dim fn
fn = Request.ServerVariables("SCRIPT_NAME")
fn = Mid(fn,InStrRev(fn,"/")+1)
Response.Write "当前文件名是:" & fn
%>

ASP取得当前url:

<%
fn = Request.ServerVariables("SCRIPT_NAME")
Response.Write "当前URL是:" & fn
%>



版权所有!www.sieye.cn
E.Mail:sieye@sohu.com QQ:66697110