asp获取当前完整路径(url)的函数代码

时间:2021-05-28

有时候我么您需要获取网址,端口、路径文件名、参数等,这里就为大家分享一下这个函数代码,需要的朋友可以参考下

函数1

<%function GetUrl() on Error Resume Next Dim strTempif LCase(request.ServerVariables("HTTPS")) = "off" ThenstrTemp = "http://"ElsestrTemp = "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 = strTempEnd Functionresponse.write GetUrl()%>

函数2

<!--获取当前页面路径--><%dim str,host,url,keyword,fullstr="http://";host = Request.ServerVariables("HTTP_HOST")url = Request.ServerVariables("PATH_INFO") '或urlkeyword = Request.ServerVariables("QUERY_STRING")if keyword <> "" thenfull = str&host&url&"?"&keywordelsefull = str&host&urlend ifsession("url")=full%>

使用的话肯定选择第一个,支持https的判断。

如果是通过404页面除非,这个是获取不到的,需要结合js来实现

例如:

js页面

<script>var pathname = window.location.pathname;location.replace("/do.asp?p="+pathname);</script>

将路径传参给do.asp进行处理

strpath=Request("p")

即可获取404之前的页面,然后进行执行操作即可,注意目录权限。也可以放到404中处罚iframe进行操作。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章