我想在數據庫中輸入html並將其顯示爲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>").
我知道用這個行動上的,但我不希望它適用於每個屬性:
[ValidateInput(假) ]