データベースにhtmlを入力し、htmlとして表示したいと思います。 HTMLを受け入れることができるはずですContent
htmlエンティティの検証を無視するモデル属性
public class TemplateVM
{
[HiddenInput(DisplayValue = false)]
public int TemplateId { get; set; }
public string Name { get; set; }
public string Content { get; set; }
}
プロパティ:私はこのように私の見解モデルを書きました。これどうやってするの?今、それはのエラースロー:
A potentially dangerous Request.Form value was detected from the client (Content="<p>test</p>").
を私はアクションでこれを使用しての意識んだけど、私はそれがすべてのプロパティに適用したいいけない。:
[ValidateInput(偽) ]