正确的 url 编码空格字符
我使用 HttpUtility.UrlEncode 对路由中使用的任何值进行编码。
我已经解决了编码正斜杠的问题。我现在遇到的新问题是空格。空格被编码为 + 。
这适用于 VS 集成 Web 服务器,但我在 Windows Server 2008 上的 IIS7 中遇到问题。 如果我有 URL http://localhost/Home/About/asdas+sdasd
我收到错误 404.11 - 请求包含双转义序列。
我知道我可以用“%20”替换空格,但我不想自己关心正确的编码。有没有可以使用 UrlEncoder 进行 MVC 的工具?
I use HttpUtility.UrlEncode to encode any value that is used in a route.
I already solved an issue with encoding forward slashes. The new problem I have now is with spaces. A space is encoded as + .
This works on the VS integrated Webserver, but I have an issue with it in IIS7 on Windows Server 2008.
If I have the URL http://localhost/Home/About/asdas+sdasd
I get the error 404.11 - Request contains double escape sequence.
I know I can just replace the space by "%20", but I dont want to care about propper encoding myself. Is there any ready to use UrlEncoder for MVC out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
' ' 编码为 %20 使用
HttpUtility.UrlPathEncode
。' ' encoded to %20 use
HttpUtility.UrlPathEncode
.任何 URL 编码通常都被设计用于 URL 的路径部分,原因是不同的方案在安全列表中具有不同的字符。查找您的库 urlencoder,然后在 url 的路径和上面部分中使用它。
Any URL Encoding is most often designed to work on the path component of the url, the reason because different schemes have different characters in the safe list. Look for your libraries urlencoder and just use it in the path and above portion of the url.
UrlPathEncode只是对Url的路径进行编码,而不是对整个Url进行编码。
UrlPathEncode just encodes the path of the Url, rather than encoding the whole Url.