发新话题
打印

ASP常见问题及解答(4)

ASP常见问题及解答(4)

1.取当前网页的地址全名,以便返回用
<%
Function GetUrl()
On Error Resume Next
Dim strTemp
If LCase(Request.ServerVariables("HTTPS")) = "off" Then
strTemp = "http://"
Else
strTemp = "https://"
End If
strTemp = strTemp

TOP

发新话题