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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    做了CDN加速的ASP网站获取用户真实IP程序
    复制代码 代码如下:

    function checkip(checkstring)'用正则判断IP是否合法
    dim re1
    set re1=new RegExp
    re1.pattern="^[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$"
    re1.global=false
    re1.Ignorecase=false
    checkip=re1.test(checkstring)
    set re1=nothing
    end function

    复制代码 代码如下:

    function get_cli_ip()'取真实IP函数,先 HTTP_CLIENT_IP 再 HTTP_X_FORWARDED_FOR 再 REMOTE_ADDR
    dim client_ip
    if checkip(Request.ServerVariables("HTTP_CLIENT_IP"))=true then
    get_cli_ip = checkip(Request.ServerVariables("HTTP_CLIENT_IP"))
    else
    MyArray = split(Request.ServerVariables("HTTP_X_FORWARDED_FOR"),",")
    if ubound(MyArray)>=0 then
    client_ip = trim(MyArray(0))
    if checkip(client_ip)=true then
    get_cli_ip = client_ip
    exit function
    end if
    end if
    get_cli_ip = Request.ServerVariables("REMOTE_ADDR")
    end if
    end function
    您可能感兴趣的文章:
    • 做了CDN获取用户真实IP的函数代码(PHP与Asp设置方式)
    • asp 取得用户真实IP,对代理地址仍然有效的函数
    • ASP如何获取真实IP地址
    上一篇:asp获取远程网页的指定内容的实现代码
    下一篇:asp 页面允许CACHE的方法
  • 相关文章
  • 

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

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

    做了CDN加速的ASP网站获取用户真实IP程序 做了,CDN,加速,的,ASP,网站,