I would like to wither add an additional CSS class or give an ID to my @Html.ValidationSummary() tag. I tried the new keyword like I would with other HTML Helpers but gives an anonymous type to string conversion error. Is this possible to do and if so how?
@Html.ValidationSummary(false, new { @id = "validationSummary" })
.validation-summary-errorsclass not enough?