.Net获取URL中文参数值的乱码问题解决方法总结
程序员文章站
2023-12-09 23:11:15
本文总结分析了.net获取url中文参数值的乱码问题解决方法。分享给大家供大家参考,具体如下:
解决方法:
1.设置web.config文件
本文总结分析了.net获取url中文参数值的乱码问题解决方法。分享给大家供大家参考,具体如下:
解决方法:
1.设置web.config文件
<system.web> <globalization requestencoding="gb2312" responseencoding="gb2312" culture="zh-cn" fileencoding="gb2312" /> </system.web>
2.传递中文之前,将要传递的中文参数进行编码,在接收时再进行解码。
string name = "中文参数"; response.redirect("b.aspx?name="+server.urlencode(name)) ;
string name = request.querystring["name"]; response.write(server.urldecode(name)) ;
3.js传中文参数:
function gourl(){ var name = "中文参数"; location.href = "b.aspx?name="+escape(name) ; }
string name = request.querystring["name"]; response.write(server.urldecode(name)) ;
总结:
一般来说。设置web.config文件就可以了。但是如果你用 javascript 调用 webservice 方法的话(往webservice里面传递中文参数)。设置 web.config 文件好象无效。
或用:
response.redirect("test1.aspx?111="+system.web.httputility.urlencode("中华人明*")) ; //建议使用最后如果是从其他的页面获取中文参数没有乱码,那就更简单了 string message ="http://localhost/test/test1.aspx?111="+system.web.httputility.urlencode("中华人明*");
http:
//你要获取某个页面的返回值的地址" //发送请求 httpwebrequest myhttpwebrequest = (httpwebrequest)webrequest.create(message) ; //接受请求 httpwebresponse myhttpwebresponse = (httpwebresponse)myhttpwebrequest.getresponse() ; stream receivestream = myhttpwebresponse.getresponsestream() ; streamreader readstream = new streamreader(receivestream, system.text.encoding.getencoding("gb2312")) ; //此为要取页面的返回值输出的返回结果 returnvalue = readstream.readtoend();
更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net操作json技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作xml技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。