ASP得到当前页面的URL字符串,类似于PHP中的PHP_SELF函数,这样当处理完一个操作后,可以用本函数获取自己本身所在页面的URL,然后自动返回到本页,这样即使你修改文件名的话,也不受影响,因为ASP内置函数没有这一类,所以就自己写吧,函数如下:
Function CUrl() Domain_Name = LCase(Request.ServerVariables("Server_Name")) Page_Name = LCase(Request.ServerVariables("Script_Name")) Quary_Name = LCase(Request.ServerVariables("Quary_String")) If Quary_Name ="" Then CUrl = "http://"&Domain_Name&Page_Name'若不需要域名网址可自行去掉 Else CUrl = "http://"&Domain_Name&Page_Name&"?"&Quary_Name End If End Function