主页 > 知识库 > asp中获取当前页面的地址与参数的函数代码

asp中获取当前页面的地址与参数的函数代码

热门标签:阿里云 科大讯飞语音识别系统 银行业务 Linux服务器 团购网站 服务器配置 电子围栏 Mysql连接数设置
复制代码 代码如下:

Function getCurrentUrl()
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")
end if
strTemp = strTemp Request.ServerVariables("URL")
getCurrentUrl = strTemp
End Function

Function getUrlWithParams()
Dim ScriptAddress,Servername,qs
ScriptAddress = CStr(Request.ServerVariables("SCRIPT_NAME"))
Servername = CStr(Request.ServerVariables("Server_Name"))
qs=Request.QueryString
If Request.ServerVariables("SERVER_PORT") > 80 Then
Servername = Servername ":" Request.ServerVariables("SERVER_PORT")
end if
if qs>"" then
getUrlWithParams ="http://" Servername ScriptAddress "?"qs
else
getUrlWithParams ="http://" Servername ScriptAddress
end if
End Function

标签:大理 萍乡 蚌埠 广元 枣庄 江苏 衡水 衢州

巨人网络通讯声明:本文标题《asp中获取当前页面的地址与参数的函数代码》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266