ASP.Net 中非 ANSI 字符的 QueryString 编码
我将“Malmö”作为 Request.QueryString 参数传递给页面。但是,代码将其视为“Malm�”,这意味着字符串比较失败。 web.config 中的所有全球化设置均设置为 UTF-8。我错过了什么吗?
编辑:查询字符串看起来像这样 http://localhost/PageName/?courseKommun=Malm%F6
I'm passing "Malmö" as a Request.QueryString parameter to a page. However, the code sees it as "Malm�" meaning that string comparison fails. All globalization settings are set to UTF-8 in web.config. Am I missing something?
Edit: The querystring looks like this http://localhost/PageName/?courseKommun=Malm%F6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%F6
不是 ö 的 URL 编码,因此您看不到 ö。正确的 URL 编码为
%C3%B6
(参见)。它应该适用于两个版本:
/?courseKommun=Malmö
/?courseKommun=Malm%C3%B6
%F6
is not the URL encoding for ö, that's why you don't see an ö.The correct URL encoding would be
%C3%B6
(see).It should work just fine with both versions:
/?courseKommun=Malmö
/?courseKommun=Malm%C3%B6