asp獲取當前URL
asp並不像javascript那樣直接用函數取得當前url,以前天真的認為asp沒有取得當前url的方法。但最近發現,其實是可以的。 If LCase(Request.ServerVariables("HTTPS")) = "off" Then
strTemp = "http://"
Else
strTemp = "https://"
End If
strTemp = strTemp & Request.ServerVariables("SERVER_NAME")
If Request.ServerVariables("SERVER_PORT") <> 80 Then
strTemp = strTemp & ":" & Request.ServerVariables("SERVER_PORT")
end if