Server.UrlEncode 不适用于“” *” ASP.NET 3.5

发布于 2024-09-14 07:43:07 字数 294 浏览 2 评论 0原文

为什么?

Server.UrlEncode("2*")

返回2*

2%2A

,而在此演示站点

Why?

Server.UrlEncode("2*")

return 2*

while it should return 2%2A

as tested on this demo site

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

怪异←思 2024-09-21 07:43:07

RFC 1738 特别允许在 URL 中使用 *

因此,只有字母数字、特殊字符“$-_.+!*'(),”和
可以使用用于其保留目的的保留字符
URL 中未编码。

因此,无需对其进行编码。

您链接到的页面是一个经典的 asp 页面,因此使用 UrlEncode,因此这是一种相当古老的实现,而不是 .NET 实现。

RFC 1738 specifically allows * in the URL:

Thus, only alphanumerics, the special characters "$-_.+!*'(),", and
reserved characters used for their reserved purposes may be used
unencoded within a URL.

So, there is no need to encode it.

The page you link to is a classic asp page so uses UrlEncode, so quite an old implementation and not the .NET one.

终弃我 2024-09-21 07:43:07

根据 .NET,* 是一个“安全”字符,不需要进行编码。

这实际上是否正确,我不知道。

According to .NET, * is a 'safe' character and needs not to be encoded.

Whether this is actually correct or not, I do not know.

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