MVC3 ascx 与 razor 页面渲染问题

发布于 2024-10-21 02:14:41 字数 665 浏览 1 评论 0原文

我有一个可以正确呈现的 aspx 网页。当转换成剃须刀时,它就不会了。这是一个简化的示例(删除了所有无关的内容)。

aspx:

   <asp:Content ID="indexContent" ContentPlaceHolderID="ToolContent" runat="server">
      <% string test = "<div><b>Tag Test</b></div>"; %>
      <h2><%= test %></h2>
   </asp:Content>

razor:

   @section ToolContent {
      @{ string test = "<div><b>Tag Test</b></div>"; }
      <h2>@test</h2>
   }

aspx 按预期呈现。剃刀仅在标题标签中显示“test”(

Tag Test
)的内容。

我认为我对剃须刀的理解是有缺陷的。如果有人可以启发我和/或向我展示解决方案/解决方法,我将不胜感激。

I have an aspx web page that renders correctly. When converted to razor, it does not. Here is a simplified example (stripped of all extraneous stuff).

aspx:

   <asp:Content ID="indexContent" ContentPlaceHolderID="ToolContent" runat="server">
      <% string test = "<div><b>Tag Test</b></div>"; %>
      <h2><%= test %></h2>
   </asp:Content>

razor:

   @section ToolContent {
      @{ string test = "<div><b>Tag Test</b></div>"; }
      <h2>@test</h2>
   }

The aspx renders as expected. The razor just displays the content of "test" (<div><b>Tag Test</b></div>) in the header tag.

I assume that my understanding of razor is flawed. If someone could enlighten me and/or show me a solution/work around, I would greatly appreciate it.

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

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

发布评论

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

评论(1

最美不过初阳 2024-10-28 02:14:41

当您编写 @test 时,Razor 会自动转义它。

为了防止它被转义,请编写@Html.Raw(test)

When you write @test, Razor automatically escapes it.

To prevent it from being escaped, write @Html.Raw(test).

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