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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP中只有UrlEncode,没有Urldecode问题的解决方法?

    在ASP中传递参数时有一个很有用的系统函数Server.UrlEncode,可以将一些非字母数字的特殊符号转换成标准URL编码(其实就是16进制ASC码),这样就解决了参数传递问题,然后我以为也提供了Server.UrlDecode,但使用后却发现程序报错,原来系统并没有提供这个我想象中的解码函数。怎幺办,自己动手吧。

    UrlEncode的原理其实很简单,就是将特殊字符转换成16进制ASC码值,那么译码函数就只要将16进制ASC转回对应的字符就OK了。

    Function URLDecode(enStr)          'URL解碼函數 
     dim deStr 
     dim c,i,v 
     deStr="" 
     for i=1 to len(enStr) 
       c=Mid(enStr,i,1) 
       if c="%" then 
         v=eval("h"+Mid(enStr,i+1,2)) 
         if v128 then 
           deStr=deStrchr(v) 
           i=i+2 
         else 
           if isvalidhex(mid(enstr,i,3)) then 
             if isvalidhex(mid(enstr,i+3,3)) then 
               v=eval("h"+Mid(enStr,i+1,2)+Mid(enStr,i+4,2)) 
               deStr=deStrchr(v) 
               i=i+5 
             else 
               v=eval("h"+Mid(enStr,i+1,2)+cstr(hex(asc(Mid(enStr,i+3,1))))) 
               deStr=deStrchr(v) 
               i=i+3 
             end if 
           else 
             destr=destrc 
           end if 
         end if 
       else 
         if c="+" then 
           deStr=deStr" " 
         else 
           deStr=deStrc 
         end if 
       end if 
     next 
     URLDecode=deStr 
    end function 
     
    function isvalidhex(str) 
     isvalidhex=true 
     str=ucase(str) 
     if len(str)>3 then isvalidhex=false:exit function 
     if left(str,1)>"%" then isvalidhex=false:exit function 
     c=mid(str,2,1) 
     if not (((c>="0") and (c="9")) or ((c>="A") and (c="Z"))) then isvalidhex=false:exit function 
     c=mid(str,3,1) 
     if not (((c>="0") and (c="9")) or ((c>="A") and (c="Z"))) then isvalidhex=false:exit function 
    end function

    经测试gb312格式的asp使用没有问题。

    您可能感兴趣的文章:
    • ASP中实现的URLEncode、URLDecode自定义函数
    • ASP的URLDecode函数URLEncode解码函数
    • 用ASP应用程序实现自己的UrlDeCode
    上一篇:asp获得浏览器agent信息代码
    下一篇:对象不支持此属性或方法: Session.CodePage = 936 解决方法
  • 相关文章
  • 

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

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

    ASP中只有UrlEncode,没有Urldecode问题的解决方法? ASP,中,只有,UrlEncode,没有,