[.net]"Request.Form出现乱码"的解决方法
由一个html文件中的表单向aspx文件提交数据,通过Request.Form得到的数据中所有中文变成乱码,如果用Response.Write();将其输出,在 ie中显示为一个问号。
解决方法为:
在web.config中把
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
中的“utf-8”改为“GB2312”,即可!!!