Hi I have a form at which I use ckeditor. This form worked fine but now doesn't work in Asp.Net 4. Any suggestions? I have ValidateRequest="false" directive.
|
|
Found solution at the error page :) Just needed to add requestValidationMode="2.0"
MSDN information: HttpRuntimeSection.RequestValidationMode Property |
|||||||||||||||||
|
|
There is a way to turn the validation back to 2.0 for one page. Just add the below code to your web.config:
|
|||||||
|
|
I know this is an old question, but if you encounter this problem in MVC 3 then you can decorate your e.g.
|
|||
|
|
|
Note that another approach is to keep with the 4.0 validation behaviour, but to define your own class that derives from
(where This way you keep the advantages of 4.0s behaviour (specifically, that the validation happens earlier in the processing), while also allowing the requests you need to let through, through. |
|||||||
|
|
Solution I have found works without changing the validation mode. You have to use a System.Web.Helpers.Validation.Unvalidated helper from System.Web.WebPages.dll. It is going to return a UnvalidatedRequestValues object which allows to access a form and query string without validation. Works for me for MVC3 and .NET 4. Regards, Szymon |
|||||||||
|
protected by Community♦ May 18 '11 at 11:33
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.