I'm looking for a little help, since now it drives me crazy.
I have a tinyMCE text editor on my page that is filled with content that is already stored in the database as html.
eg.
<p>first paragraph</p>
<p>second paragraph</p>
etc, etc without any problems there.
but when I make changes in the editor and then try to update the contents in the database, I get an error
potentially dangerous request.form value was found at the client
I made all the recommended changes to the web.config file
- requestvalidationmode = "2.0"
- ValidateRequest = "false"
But still getting the potentially dangerous value of request.form was detected using a client error . This happens in .NET 4.0, any help / advice would be great.
source
share