jquery向.ashx檔案post中文亂碼問題的解決方案

來源:互聯網
上載者:User

1.我的環境:vs2005,未裝SP1補丁,不能建立Web應用程式,只能建立網站;jquery版本1.5.1

2.web.config中的相關配置

<globalization requestEncoding="gb2312" responseEncoding="gb2312"/>

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中的相關配置改為
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
之後,不管是否加上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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.