MVC2 或 MVC3 html.routelink 可以包含 « 和 » 吗?
显示这个的语法是什么?我的程序将始终在我正在创建的分页助手中逐字地呈现 « ,并且由于切换到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用相应的 UTF-8 字符,HTML 助手就会处理它的编码:
Just use the corresponding UTF-8 character and the HTML helper will take care of the encoding it:
只要您使用 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.