asp.net mvc 和规范链接:bug?
我在 asp.net MVC 中创建了一个简单的 CMS。每篇文章都有一个我想使用的规范链接在我的母版页中是这样的:
<link href="<%= Model.CanonicalLink %>" rel="canonical" />
但是,当我在 Firefox 中查看此页面的源代码时,它向我显示:
<link href="../../Views/Shared/%3C%25=%20Model.CanonicalLink%20%25%3E" rel="canonical" />
我一定很愚蠢,或者这是一个错误。当我移动 <%= Model.CanonicalLink %> 的一部分,然后它向我显示规范链接。那么,是什么导致了这种奇怪的行为呢?
I created a simple CMS in asp.net MVC. Every article has a canonical link, which I want to use in my master page like this:
<link href="<%= Model.CanonicalLink %>" rel="canonical" />
However, when I view the source of this page in Firefox, it shows me:
<link href="../../Views/Shared/%3C%25=%20Model.CanonicalLink%20%25%3E" rel="canonical" />
I must be very stupid, or it is a bug. When I move the
<%= Model.CanonicalLink %>
part out of the <link />
then it shows me the canonical link. So, what is causing this odd behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 ASPX 解析器对 HTML 的踩踏。从定义此
的
元素中删除 runat="server"。
This is the ASPX parser stomping on your HTML. Remove the runat="server" from the
<head>
element in which this<link>
is defined.