0

enter code here如何查看粗体、斜体等文字?

我认为这是: @(Html.Kendo().EditorFor(model => model.Content))

在我的控制器中:

 Content = HttpUtility.HtmlDecode(opininonmodel.Content),

在结果应该显示的索引视图中,我有这个:

@foreach (var item in Model)
{
@Html.DisplayFor(modelItem => item.Content)
}

我尝试了Server.HtmlDecode,但仍然看到 html 标签不是他们所做的

4

1 回答 1

2

您可以使用Html.Raw不会像助手一样对输出进行 HTML 编码的Html.DisplayFor助手:

@foreach (var item in Model)
{
    @Html.Raw(item.Content)
}
于 2013-03-22T20:53:30.780 回答