首页 > 编程 > .NET > 正文

asp.net中在用ajax格式传递数据到aspx页面时出现乱码

2024-07-10 13:23:10
字体:
来源:转载
供稿:网友
 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"]);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表