怎么用ASP的方法获取当前URL的地址。是使用ASP,因为获取的内容要在服务器端使用。我自己用下列方法获取的是动太的地址。
Function GetUrl()
On Error Resume Next
Dim strTemp
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")
strTemp=strTemp & Request.ServerVariables("URL")
If Trim(Request.QueryString) <> "" Then strTemp = strTemp & "?" & Trim(Request.QueryString)
GetUrl=strTemp
End Function