I'm just testing some screens in my MVC application for HTML input in some fields of text and I'm not sure what's wrong.
For most of the fields the validation summary is shown as expected but when I enter text with some suspect characters like <b>bold</b>
the framework invalidates the model before any controller code is hit and then I just get an empty response from the server.
The string property in question is decorated in my model like this:
[StringLength(1000, ErrorMessage = "Must be under 1000 characters long"), DataType(DataType.MultilineText, ErrorMessage = "Text Error")]
Why would the validation on this one field generate an empty response?