在MVC3 Razor中显示带样式的数据

时间:2013-04-01 04:13:36

标签: asp.net-mvc-3 razor

我将从富文本编辑器输入的数据存储为数据库,作为带有MVC3 Razor中字体设置的html字符串。 例如:大胆红色

在另一个页面中,我必须显示这些信息以及样式。我试图将其显示为

<label id="lblDisplay" >@Html.Raw(@Model.IncidentDescription)</label> 

其中@model.IncidentDescription有价值 <strong><span style="color:#ff0000">Bold Red</span></strong>。但它只显示风格设置中的“Bold Red”。如何在.cshtml页面中显示我的样式设置?

1 个答案:

答案 0 :(得分:0)

请尝试以下方法:

<label id="lblDisplay">
 @Html.Raw(HttpUtility.HtmlDecode(@Model.IncidentDescription))</label>

Reference