Every time a user posts something containing < or > in a page in my web application, I get this exception thrown.
<
>
I don\'t want to go
In ASP.NET MVC you need to set requestValidationMode="2.0" and validateRequest="false" in web.config, and apply a ValidateInput attribute to your controller action:
and
[Post, ValidateInput(false)] public ActionResult Edit(string message) { ... }