string
使用时如何获得 Unicoderequest.querystring['param']
问问题
1246 次
1 回答
5
Request.QueryString["param"]
我认为使用for Unicode没有任何问题string
。
不过,您可以像这样声明Request
和Response
编码web.config
(来自MSDN):
<configuration>
<system.web>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
</system.web>
</configuration>
于 2013-05-11T14:39:02.687 回答