有时候传递中文会出现乱码等原因,最好对中文参数进行编码处理。

asp解码url 代码如下: a href='http://www.popasp.com/1.asp?action= 解码函数 [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('0 then deStr=deSt

作者: 来源: 时间: 17-11-23 16:05:36

asp解码url
代码如下:
<a href="http://www.popasp.com/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=deStr&chr(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=deStr&c
end if
end if
next
URLDecode=deStr
End function

response.Write URLDecode(request.QueryString("action"))
%>
[html]
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们