When an error occurs on the back-end, the MVC controller returns a message via the ModelState.AddModelError(\"\", \"message\");
ModelState.AddModelError(\"\", \"message\");
I would like to ha
Try wrapping the validation summary in an Html.Raw and a Server.HtmlDecode, like so:
Html.Raw
Server.HtmlDecode
@Html.Raw(Server.HtmlDecode(Html.ValidationSummary().ToString()))