asp.net mvc 和规范链接:bug?

发布于 2024-08-23 10:24:20 字数 569 浏览 9 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

染柒℉ 2024-08-30 10:24:20

这是 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.

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