使用string
request.querystring['param']
答案 0 :(得分:5)
我认为将Request.QueryString["param"]
用于Unicode string
没有任何问题。
但是,您可以在Request
中声明Response
和web.config
这样的编码(来自MSDN):
<configuration>
<system.web>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
</system.web>
</configuration>