asp.net下Request.QueryString取不到值的解决方法
作者:
asp.net下Request.QueryString取不到值的解决方法
今天做新的ppc weather服务器的时候竟然碰到QueryString取不到值的问题
查了下网上,应该是编码的问题,tq121用的是utf-8,而我希望用gb2132输入~
因此,改一下~哈哈
打开web.config把
<!-- <globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
改成 <globalization
requestEncoding="gb2312"
responseEncoding="gb2312"
/>
</system.web>
查了下网上,应该是编码的问题,tq121用的是utf-8,而我希望用gb2132输入~
因此,改一下~哈哈
打开web.config把
<!-- <globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
改成 <globalization
requestEncoding="gb2312"
responseEncoding="gb2312"
/>
</system.web>
您可能感兴趣的文章:
- Asp.net内置对象之Request对象(概述及应用)
- Asp.net中Request.Url的各个属性对应的意义介绍
- ASP.NET从客户端中检测到有潜在危险的request.form值的3种解决方法
- asp.net HttpWebRequest自动识别网页编码
- ASP.NET笔记之 Request 、Response 与Server的使用
- asp.net中Request.QueryString与Request.Param的区别分析
- asp.net Request获取url信息的各种方法比较
- Asp.net response对象与request对象使用介绍
- asp.net request.PathInfo实现的url重写
- asp.net实现遍历Request的信息操作示例