2
I put the Ckeditor in my project. It works fine, but when I click the button Save it returns Essee error:
A possibly dangerous Request.Form value has been detected in the client (Content="
<p> <span style="f...").
PS: I have disabled the RequestValidation
in the Web.Config
Try decorating your Action that receives the post with the following code: [Validateinput(false)]
– Hermes Autran