如何在ASP.NET MVC中呈现HTMLstring?

在我的主页上,我有代码@{Html.RenderPartial("_Partial1.cshtml");} ,并在我的部分,我有一个HTMLstring:

 @{ // 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源代码而不是string?

你可以使用Html.Raw()方法。