正确的 url 编码空格字符

发布于 2024-08-09 01:08:28 字数 328 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

空‖城人不在 2024-08-16 01:08:28

' ' 编码为 %20 使用 HttpUtility.UrlPathEncode

' ' encoded to %20 use HttpUtility.UrlPathEncode.

苹果你个爱泡泡 2024-08-16 01:08:28

任何 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.

撕心裂肺的伤痛 2024-08-16 01:08:28
@HttpUtility.UrlPathEncode(path)

UrlPathEncode只是对Url的路径进行编码,而不是对整个Url进行编码。

@HttpUtility.UrlPathEncode(path)

UrlPathEncode just encodes the path of the Url, rather than encoding the whole Url.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文