I am trying to display a strong tag inside a validation summary but it encodes it and does not display properly.
@Html.ValidationSummary(false, \"E
The easiest way:
@if (!ViewData.ModelState.IsValid) { @Html.Raw(HttpUtility.HtmlDecode(Html.ValidationSummary(false, "ERROR:The form is not valid!").ToHtmlString())) }