I am trying to turn off Request Validation for all action methods in a controller by doing this:
[ValidateInput(false)] public class MyController : Controller
To make it working you need to modify web.config as well:
...