表单通过post传值出现乱码 .net程序
表单通过post传值出现乱码.net程序传值的页面是gb2312接收的页面是utf-8stringCurrentStr=Request.Url.Query;System....
表单通过post传值出现乱码 .net程序
传值的页面是gb2312 接收的页面是utf-8
string CurrentStr = Request.Url.Query;
System.Collections.Specialized.NameValueCollection nv
= System.Web.HttpUtility.ParseQueryString(CurrentStr, System.Text.Encoding.GetEncoding
("GB2312"));//这样便以GB2312编码格式进行解码
用这个方法可以解决问题 不过是get传值方法 如果用post传值我该怎么写吗 展开
传值的页面是gb2312 接收的页面是utf-8
string CurrentStr = Request.Url.Query;
System.Collections.Specialized.NameValueCollection nv
= System.Web.HttpUtility.ParseQueryString(CurrentStr, System.Text.Encoding.GetEncoding
("GB2312"));//这样便以GB2312编码格式进行解码
用这个方法可以解决问题 不过是get传值方法 如果用post传值我该怎么写吗 展开
展开全部
System.IO.StreamReader reader=new System.IO.StreamReader(Request.InputStream);//这里也可以加编码方式。
string CurrentStr = reader.ReadToEnd();
string CurrentStr = reader.ReadToEnd();
追问
我如何接受参数吗
追答
然后就和你之前一样了
System.IO.StreamReader reader=new System.IO.StreamReader(Request.InputStream);//这里也可以加编码方式。
string CurrentStr = reader.ReadToEnd();
System.Collections.Specialized.NameValueCollection nv
= System.Web.HttpUtility.ParseQueryString(CurrentStr, System.Text.Encoding.GetEncoding
("GB2312"));//这样便以GB2312编码格式进行解码
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询