asp.net中在用ajax格式传递数据到aspx页面时出现乱码
更新时间:2013年01月11日 15:04:33 作者:
asp.net中在用ajax格式传递数据到aspx页面时有时会出现乱码,很是疑惑,不要走开接下来介绍解决方法,感兴趣的朋友可以了解下
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"]);
相关文章
RadioButtonList绑定图片及泛型Dictionary应用
读取站点某一目录的图片,需要掌握LINQ与泛型Dictionary<TKey,TValue>的使用,本文将介绍RadioButtonList绑定图片的实现,感兴趣的朋友可以了解下,或许对你有所帮助2013-02-02asp.net GridView中使用RadioButton单选按钮的方法
这篇文章主要介绍了asp.net GridView中使用RadioButton单选按钮的方法,结合实例形式总结分析了三种GridView中使用RadioButton单选按钮的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下2016-07-07
最新评论