asp.net中在用ajax格式传递数据到aspx页面时出现乱码
时间:2021-03-11 10:07:50|栏目:.NET代码|点击: 次
asp.net中在用ajax格式传递数据到aspx页面时有时会出现乱码,以下为解决方法
js中 :
XmlHttp.open("POST", "test.aspx", false);
XmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
XmlHttp.send("QueryName=" + escape(Queryname) + "&QuerySex=" +escape(Querysex));
在test.aspx中:
string QueryName = HttpUtility.UrlDecode(Request.Params["QueryName"]);
string QuerySex = HttpUtility.UrlDecode(Request.Params["QuerySex"]);
js中 :
复制代码 代码如下:
XmlHttp.open("POST", "test.aspx", false);
XmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
XmlHttp.send("QueryName=" + escape(Queryname) + "&QuerySex=" +escape(Querysex));
在test.aspx中:
复制代码 代码如下:
string QueryName = HttpUtility.UrlDecode(Request.Params["QueryName"]);
string QuerySex = HttpUtility.UrlDecode(Request.Params["QuerySex"]);
上一篇:ASP.NET Core中如何利用多种方式给Action传参
栏 目:.NET代码
下一篇:asp.net 1.1/ 2.0 中快速实现单点登陆
本文标题:asp.net中在用ajax格式传递数据到aspx页面时出现乱码
本文地址:http://www.codeinn.net/misctech/78690.html