我想在数据库中输入 html 并将其显示为 html。我这样写我的视图模型:
public class TemplateVM
{
[HiddenInput(DisplayValue = false)]
public int TemplateId { get; set; }
public string Name { get; set; }
public string Content { get; set; }
}
该属性Content
应该能够接受 html。我怎样才能做到这一点?现在,它会引发以下错误:
A potentially dangerous Request.Form value was detected from the client (Content="<p>test</p>").
我知道在操作中使用它,但我不希望它适用于每个属性。:
[验证输入(假)]