jquery向.ashx文件post中文乱码问题的解决方法_jquery
程序员文章站
2022-03-14 17:05:33
...
1.我的环境:vs2005,未装SP1补丁,不能创建Web应用程序,只能创建网站;jquery版本1.5.1
2.web.config中的相关配置
3.jquery的Post数据的写法
$(document).ready(function (){
$("#btnSend").click(function(){
$.ajax({
type: "POST",
url: "PrecisionAHandle.ashx",
contentType:"application/x-www-form-urlencoded; charset=UTF-8",
data: { "StudentId": $("#LblStudentId").attr("innerText"),"StudentName": $("#LblStudentName").attr("innerText"),"StudentAge": $("#txtStudentAge").attr("value")},
success: function(html){
$("#TabContainer").html(html);
}
});
});
});
其中StudentName是中文
4.在.ashx文件中接收参数的写法
string strStudentName = context.Request.Params["StudentName"];
注意:如果没有contentType:"application/x-www-form-urlencoded; charset=UTF-8",则context.Request.Params["StudentName"]是乱码。
经过在.ashx中跟踪context.Request.ContentEncoding,可知jquery所post过来的数据采用的是gb2312编码,可能context.Request在接收到数据时默认采用utf-8进行解码,但是jquery在Post数据的时候却不是用的utf-8才导致.ashx的context.Request.Params["StudentName"]显示为乱码。
感觉比较奇怪的现象:
现象1:在不添加contentType:"application/x-www-form-urlencoded; charset=UTF-8",的情况下,在.ashx文件中使用下面的语句却可以正确显示字符串:
StreamReader steamRd = new StreamReader(HttpContext.Current.Request.InputStream);
string strPostData = steamRd .ReadToEnd();
strPostData =HttpUtility.UrlDecode(strPostData, Encoding.GetEncoding("utf-8"));
现象2:将web.config中的相关配置改为
之后,不管是否加上contentType:"application/x-www-form-urlencoded; charset=UTF-8",后台的.ashx文件接收到的参数仍然是乱码。修改web.config之后网站编译的很慢且运行的也很慢。
参考文章:
http://www.jb51.net/article/26658.htm
http://www.jb51.net/article/26659.htm
2.web.config中的相关配置
3.jquery的Post数据的写法
复制代码 代码如下:
$(document).ready(function (){
$("#btnSend").click(function(){
$.ajax({
type: "POST",
url: "PrecisionAHandle.ashx",
contentType:"application/x-www-form-urlencoded; charset=UTF-8",
data: { "StudentId": $("#LblStudentId").attr("innerText"),"StudentName": $("#LblStudentName").attr("innerText"),"StudentAge": $("#txtStudentAge").attr("value")},
success: function(html){
$("#TabContainer").html(html);
}
});
});
});
其中StudentName是中文
4.在.ashx文件中接收参数的写法
string strStudentName = context.Request.Params["StudentName"];
注意:如果没有contentType:"application/x-www-form-urlencoded; charset=UTF-8",则context.Request.Params["StudentName"]是乱码。
经过在.ashx中跟踪context.Request.ContentEncoding,可知jquery所post过来的数据采用的是gb2312编码,可能context.Request在接收到数据时默认采用utf-8进行解码,但是jquery在Post数据的时候却不是用的utf-8才导致.ashx的context.Request.Params["StudentName"]显示为乱码。
感觉比较奇怪的现象:
现象1:在不添加contentType:"application/x-www-form-urlencoded; charset=UTF-8",的情况下,在.ashx文件中使用下面的语句却可以正确显示字符串:
复制代码 代码如下:
StreamReader steamRd = new StreamReader(HttpContext.Current.Request.InputStream);
string strPostData = steamRd .ReadToEnd();
strPostData =HttpUtility.UrlDecode(strPostData, Encoding.GetEncoding("utf-8"));
现象2:将web.config中的相关配置改为
之后,不管是否加上contentType:"application/x-www-form-urlencoded; charset=UTF-8",后台的.ashx文件接收到的参数仍然是乱码。修改web.config之后网站编译的很慢且运行的也很慢。
参考文章:
http://www.jb51.net/article/26658.htm
http://www.jb51.net/article/26659.htm
下一篇: python print如何换行
推荐阅读
-
JQuery中Ajax的Post提交在IE下中文乱码的解决方法
-
解决3.01版的jquery.form.js中文乱码问题的解决方法
-
jquery.ajax的url中传递中文乱码问题的解决方法
-
JQuery的Ajax中Post方法传递中文出现乱码的解决方法
-
JQuery中Ajax的Post提交在IE下中文乱码的解决方法
-
解决3.01版的jquery.form.js中文乱码问题的解决方法
-
JQuery ajax的post方法向action传文件路径出现乱码(非中文乱码)
-
JQuery ajax的post方法向action传文件路径出现乱码(非中文乱码)
-
解决3.01版的jquery.form.js中文乱码问题的解决方法_jquery
-
jquery.ajax的url中传递中文乱码问题的解决方法