I'm using ck editor for my form
ck editor send <p>
tag and I receive
A potentially dangerous Request.Form value was detected from the client (title=<p>efrgth</p> error
code in form:
<div class="form-group">
@Html.LabelFor(model => model.title, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
<textarea id="content" name="title" class="ckeditor form-control" dir="rtl"></textarea>
@Html.ValidationMessageFor(model => model.title, "", new { @class = "text-danger" })
</div>
</div>