With MVC stuff when there is an error on property level, we can add error to ModelState
but the same error is added to the summary also. How can we avoid to display it twice.
I want to display only public errors in the message summary and all other at property level.
Regards
Parminder
When defining your validation summary set the first parameter to true which means
Exclude Property Errors.Eg:
From MSDN: