刚开始搜索了很多,找到JAVA的,没找到.NET的, 后面根据JAVA的,大概写了个,
前台传递参数的时候要编码
例子:
var selectval = encodeURIComponent($("#select_yz").find("option:selected").text());
后台获取参数的时候要解码
例子:
HttpContext.Current.Server.UrlDecode(HttpContext.Current.Request.QueryString["protype"]);