Summernote and form submission in MVC c#

前端 未结 3 1108
迷失自我
迷失自我 2021-02-08 04:05

I am using the summernote plugin for text box: http://summernote.org/#/getting-started#basic-api

This is the form I have using summmernote:

3条回答
  •  别那么骄傲
    2021-02-08 04:49

    Please, use [AllowHTML]

    There's a good article on MSDN Request Validation in ASP.NET

    "To disable request validation for a specific property, mark the property definition with the AllowHtml attribute:"

    [AllowHtml]
    public string Prop1 { get;  set; }
    

提交回复
热议问题