用ASP实现JS的decodeURIComponent()函数

Posted 秋风抚叶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用ASP实现JS的decodeURIComponent()函数相关的知识,希望对你有一定的参考价值。

<%
 response.write jsDecodeURIComponent( "%E6%B5%8B%E8%AF%95"  )
%>
<script language="jscript" runat="server">
 function jsDecodeURIComponent(str){return decodeURIComponent(str) }
</script>

 

ASP urldecode的完美解决办法。

uploadify 3版本,用formData额外传输参数时,用ASP解析乱码。想到办法,传之前先用encodeURIComponent编码。ASP接收时再解码。

 

script language=jscript runat=server,这在段,可以当作html直接放在asp代码里面。

 

以上是关于用ASP实现JS的decodeURIComponent()函数的主要内容,如果未能解决你的问题,请参考以下文章

js中decodeURI()和encodeURI()区别,decodeURIComponent和encodeURIComponent区别

url编码有个bug,不能直接用decodeURIComponent,如果遇到前面的$会报错。

asp.net后台怎么返回一个 bool给前台js用

javascript中escape()unescape()encodeURI()encodeURIComponent()decodeURI()decodeURIComponent()比较(示

JS 的各种方法

JS 的各种方法