标签:asp.net
js部分:
key = encodeURI(encodeURI($("#tbxKey").val()));
需要进行两次encodeURI
Asp.net部分:
key = Server.UrlDecode(Request["key"].ToString());
进行一次解码就行了。
JS传汉字给aspx或者ashx
原文地址:http://blog.csdn.net/moniteryao/article/details/42715735