0

string使用时如何获得 Unicoderequest.querystring['param']

4

1 回答 1

5

Request.QueryString["param"]我认为使用for Unicode没有任何问题string

不过,您可以像这样声明RequestResponse编码web.config(来自MSDN):

<configuration>
   <system.web>
      <globalization
       requestEncoding="utf-8"
       responseEncoding="utf-8"
      />
   </system.web>
</configuration>
于 2013-05-11T14:39:02.687 回答