我编写了以下代码来接受 html 标记作为模型中的数据
[AllowHtml]
[Required(ErrorMessage = "Post Content Required")]
public string PostContent { get; set; }
它接受它,但是当我回调数据时,它会显示带有 html 标签的数据,例如:
<h2><strong><p>&lt;p&gt;[...] store and many other
&amp;hellip;&lt;/p&gt;</p></strong></h2>
我试图写@HttpUtility.HtmlDecode(item.PageContent)
,但它不会删除标签..