skip to Main Content

Why does ValidationSummary not display User Validation failed? – Asp.net

Why does the console display validation errors but ValidationSummary does not display them? How to make ValidationSummary display User Validation failed? photo of the console RegisterView Code @Html.ValidationSummary() <h4>Name</h4> @Html.TextBoxFor(model => model.Name) <h4>Email</h4> @Html.TextBoxFor(model => model.Email) <h4>Pasword</h4> @Html.TextBoxFor(model => model.Pasword)…

VIEW QUESTION
Back To Top
Search