0
我如何獲得一個Unicode string
使用request.querystring['param']
如何使用的Request.QueryString [「PARAM」當得到Unicode字符串
我如何獲得一個Unicode string
使用request.querystring['param']
如何使用的Request.QueryString [「PARAM」當得到Unicode字符串
時,我覺得沒有用Request.QueryString["param"]
對Unicode string
小號任何問題。
雖然,你可以聲明Request
和web.config
像這樣(從MSDN)Response
編碼:
<configuration>
<system.web>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
</system.web>
</configuration>
在C#中,字符串爲Unicode默認。您需要更具體地瞭解您遇到的問題。 – EricLaw 2013-05-11 15:40:30