ASP得(de)到當前頁面的(de)URL字符串,類似于PHP中的(de)PHP_SELF函數,這(zhè)樣當處理(lǐ)完一個(gè)操作後,可(kě)以用(yòng)本函數獲取自己本身所在頁面的(de)URL,然後自動返回到本頁,這(zhè)樣即使你修改文件名的(de)話(huà),也(yě)不受影(yǐng)響,因爲ASP内置函數沒有這(zhè)一類,所以就自己寫吧,函數如下(xià):
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'若不需要域名網址可(kě)自行去掉 Else CUrl = "http://"&Domain_Name&Page_Name&"?"&Quary_Name End If End Function