在我的主页上,我有代码@ {Html.RenderPartial(“_ Partial1.cshtml”);},在我的Partial,我有一个HTML字符串:
@{ // The string is actually dynamic,not static. This is here for simplicity string abc="<div class=\"error\">abc</div>"; } @abc
我想输出abc一些CSS错误风格,但我实际上有< div class =“error”> abc< / div> – 当然,没有样式。如何使它解释为HTML源代码而不是字符串?
解决方法
你可以使用Html.Raw()方法。