I have text field that may contain html text (like
<b>Dickens</b>
) in razor view, I display this field with
@Html.TextAreaFor(m => m.CurrentAuthor.AboutAuthorE)
when click in any submit buttons, mvc3 throw exception
A potentially dangerous Request.Form value was detected from the client (CurrentAuthor.AboutAuthorE="<div align=justify><...").
how can I solve this error?