• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp获取当前完整路径(url)的函数代码

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

    函数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  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
    response.write GetUrl()
    %>

    函数2

    !--获取当前页面路径--> 
    % 
    dim str,host,url,keyword,full 
    str="http://"; 
    host = Request.ServerVariables("HTTP_HOST") 
    url = Request.ServerVariables("PATH_INFO") '或url 
    keyword = Request.ServerVariables("QUERY_STRING") 
    if keyword > "" then 
    full = strhosturl"?"keyword 
    else 
    full = strhosturl 
    end if 
    session("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进行操作。

    上一篇:ASP如何检测某文件夹是否存在,不存在则自动创建
    下一篇:ASP中常用的22个FSO文件操作函数整理
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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