前台传递参数:
window.location.href = GetPageName() + "?category_id=" + _category_id + "&recommend=" + _recommend + "&Word=" + encodeURI(encodeURI(_word));
word是中文,客户端编码两次,服务端解码一次
C#代码:
_word = HttpUtility.UrlDecode(Request["word"], System.Text.Encoding.UTF8);
前台获取uri字符串需解码:
_word = GetQueryString("word") == null ? "" : GetQueryString("word");
$("#text_query").val(decodeURI(_word));
原文来自:点击打开链接
新闻热点
疑难解答