在我的主頁,我的代碼@{Html.RenderPartial("_Partial1.cshtml");}
,並在我的部分,我有一個HTML字符串:如何在ASP.NET MVC中呈現HTML字符串?
@{
// The string is actually dynamic, not static. This is here for simplicity
string abc="<div class=\"error\">abc</div>";
}
@abc
我想一些CSS錯誤樣式輸出abc
,但事實上,我<div class="error">abc</div>
- 當然,那裏沒有風格。我如何將它解釋爲HTML源代碼而不是字符串?
http://stackoverflow.com/questions/4281424/asp-net-mvc-razor-output-html-string-non-escaped – adt 2013-03-21 13:26:13
'