MVC2 或 MVC3 html.routelink 可以包含 &laquo 和 &raquo 吗?

发布于 2024-10-14 07:16:00 字数 101 浏览 0 评论 0原文

显示这个的语法是什么?我的程序将始终在我正在创建的分页助手中逐字地呈现 « ,并且由于切换到 MVC3 ,似乎没有办法使用 Eval( string.FromCharCode ) 来破解它

What's the syntax for displaying this? My program will always render « literally in the pagination helper I am creating, and since the switch to MVC3 there seems to be no way to even hack it with Eval( string.FromCharCode )

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

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

发布评论

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

评论(2

飞烟轻若梦 2024-10-21 07:16:00

只需使用相应的 UTF-8 字符,HTML 助手就会处理它的编码:

@Html.RouteLink("«", new { action = "navigate", page = 1 })
@Html.RouteLink("»", new { action = "navigate", page = 3 })

Just use the corresponding UTF-8 character and the HTML helper will take care of the encoding it:

@Html.RouteLink("«", new { action = "navigate", page = 1 })
@Html.RouteLink("»", new { action = "navigate", page = 3 })
夜清冷一曲。 2024-10-21 07:16:00

只要您使用 UTF-8 作为字符集,然后直接显示 «(不对其进行编码)就是完全有效的 XHTML。

As long as you are using UTF-8 as your character-set then showing the « directly (without encoding it) is perfectly valid XHTML.

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