Asp.Net MVC 2 Html.ActionLink 外语编码

发布于 2024-11-15 05:13:44 字数 245 浏览 3 评论 0原文

当我调用 <%= Html.ActionLink("abcáí", "Index") %>在我看来,它生成以下 html 输出: abc&#225;&#237;

但我不需要转义外来字符 áí,所以我希望输出为 abcáí

我的问题不仅在于 ActionLink 函数,还在于到处,在哪里使用了 htmlencoding。

有什么建议吗?

when i call <%= Html.ActionLink("abcáí", "Index") %> in my view, it generates this html output: <a href="/">abcáí</a>

but I need not to escape the foreign characters áí, so I want the output to be <a href="/">abcáí</a>

My problem is not only with the function ActionLink, but everywhere, where is the htmlencoding used.

Any suggestions?

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

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

发布评论

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

评论(1

明月夜 2024-11-22 05:13:44

这完全不是你应该担心的事情。 HTML 帮助程序正确地对输出进行 HTML 编码。输出旨在由浏览器而不是人类读取。由于此输出的格式正确,这些浏览器将正确地向使用它们的人显示内容。

That's totally not something you should be worried about. The HTML helpers correctly HTML encode the output. The output is intended to be read by browsers, not humans. And since this output is correctly formatted, those browsers will correctly display the content to the humans using them.

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