gpt4 book ai didi

c# - 如何在 Razor 中转义 html 标签

转载 作者:行者123 更新时间:2023-11-27 23:12:43 28 4
gpt4 key购买 nike

ASP.NET MVCView 中,我需要键入以下文本行:

“这就是你在 Razor 中转义 HTML 标签的方式”

请从 < h t m l > 中删除空格以将其视为正确的 html 标记。

我如何完成它?欢迎所有答案。

最佳答案

试试这个。

  @{ var myHtmlString = new HtmlString("<html> This is how you escape an HTML tag in Razor </html>");}
@Html.Encode(myHtmlString)

打印

enter image description here

另一个简单的方法是:

  @Html.Encode(Html.Raw("<html> This is how you escape an HTML tag in Razor </html>"));

给出与上面相同的输出。

关于c# - 如何在 Razor 中转义 html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45089555/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com