My question is hopefully pretty straight forward.
Upon submitting my form, I would like to flag all properties (fields) that have invalid characters (specifically HTML) as model errors.
The issue I am facing is that Request Validation kicks in before model binding/validation and I get HTTP 500...
I saw a similar question that advertises either using [AllowHtml]
property attribute on your Model/ViewModel or using <httpRuntime requestValidationMode="2.0" />
in web.config, but what I am looking for is how to "globally catch Request Validation exceptions and show them as model errors". Furthermore, I don't want to "strip" HTML tags, I want to notify the user that their input is not valid.
I thought about using Regular Expression validation attributes to find bad input, but as I mentioned, the Request Validation on ASP.NET MVC3 occurs before model binding/validation, so that is a no-go...
A really good overview of the Request Validation can be found here.