如何在ASP.NET MVC中渲染HTML字符串?

前端之家收集整理的这篇文章主要介绍了如何在ASP.NET MVC中渲染HTML字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的主页上,我有代码@ {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()方法
原文链接:https://www.f2er.com/aspnet/254463.html

猜你在找的asp.Net相关文章