日期:2014-05-16  浏览次数:20823 次

怎么加密URL里面的参数
http://wisefinance.cn/channels/34129.html?tle=财务研修班&s=7000&name=上海
我就是想把 tle=财务研修班 变成html 后者其他什么的
但是要能在接收页面中能取到中文的值;
 跪求高手 ,帮忙

------解决方案--------------------
http://wisefinance.cn/channels/34129.html?tle=<%=Server.URLEncode("财务研修班")%>&s=7000&name=<%=Server.URLEncode("上海")%>
------解决方案--------------------
tle=<%=Server.URLEncode("财务研修班")%>
------解决方案--------------------
也可以用AES加密,再解密
------解决方案--------------------
优先考虑用post方法接收参数
------解决方案--------------------
Server.urlencode(),要不然你自己就写一个加密解密的方法