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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP让url的中文显示为编码
    asp解码url
    复制代码 代码如下:

    a href="1.asp?action=%=server.urlencode("你好")%>">asdf/a>

    解码函数
    [code]
    %
    Function URLDecode(enStr)
    dim deStr,strSpecial
    dim c,i,v
    deStr=""
    strSpecial="!""#$%'()*+,.-_/:;=>?@[\]^`{|}~%"
    for i=1 to len(enStr)
    c=Mid(enStr,i,1)
    if c="%" then
    v=eval("h"+Mid(enStr,i+1,2))
    if inStr(strSpecial,chr(v))>0 then
    deStr=deStrchr(v)
    i=i+2
    else
    v=eval("h"+ Mid(enStr,i+1,2) + Mid(enStr,i+4,2))
    deStr=deStr chr(v)
    i=i+5
    end if
    else
    if c="+" then
    deStr=deStr" "
    else
    deStr=deStrc
    end if
    end if
    next
    URLDecode=deStr
    End function

    response.Write URLDecode(request.QueryString("action"))
    %>
    [html]
    上一篇:ASP下使用Access数据库需要注意的18条安全法则
    下一篇:ASP操作XML文件的完整实例代码
  • 相关文章
  • 

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

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

    ASP让url的中文显示为编码 ASP,让,url,的,中文,显示,