DotnetSparrow
DotnetSparrow

Reputation: 27996

ValidationSummary not shown

I have created an asp.net mvc 3 razor view and added data annotation attributes on model properties. when i click the submit button on form, I see the validation messages as I used Html.ValidationMessageFor. but I dont see validation summary although I have added @Html.ValidationSummary(true). Please suggestion fix.

Upvotes: 2

Views: 2111

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038830

Try passing false:

@Html.ValidationSummary(false)

Upvotes: 5

Related Questions