I have a MVC3 razor form where I use
@Html.ValidationSummary(false)
It displays all errors including field errors at the top but it also displays field errors at field level. Is there a way to display at top only
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to remove the Html.ValidationMessageFor(…) lines. These are the inline validation messages and are unrelated to ValidationSummary.
Edit: Making it optional: