I want to show a ValidationSummary mcv3 with \"alert-error\" Bootstrap styling.
I\'m using a Razor view, and I show model errors with this code:
@Html.V
Based on the answers here:
@if (!ViewData.ModelState.IsValid) { × @Html.ValidationSummary(false, "Errors: ") }
(I'm using Bootstrap 4)