I implemented tinyMCE to fulfill the "we need a rich text editor" requirement but when posting the form to the controller I get the expected "A potentially dangerous Request.Form value was detected from the client" error, in .net 3.5 we could just use [ValidateInput=false] in the action and go on with it, but now we also have to set requestValidationMode to 2.0 in the webconfig.
Is there another way to have this particular action not validate the input without setting the requestValidationMode to 2.0 ?