How do I list all generated errors in the same div?

Something like this:

<div id="errors">
  <ul>
    <li>Email is invalid</li>
    <li>Firstname is required</li>
  </ul>
</div>
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Try using

<%=Html.ValidationSummary()%>

There is a section about it in this article: http://www.asp.net/mvc/tutorials/performing-simple-validation-cs

link|improve this answer
Nothing happens. – jgauffin Sep 8 '10 at 14:33
Do you have individual error messages working? – stimms Sep 8 '10 at 14:38
Everything works with server-side validation, but not client-side. – jgauffin Sep 8 '10 at 14:49
Did you call Html.EnableClientValidation(); and added appropriate javascript? See section entitled Making It Work In The Client in haacked.com/archive/2009/11/19/… – stimms Sep 8 '10 at 15:01
I've followed the quide and tried with both jquery scripts and the pure ms validation scripts. I'm calling EnableClientValidation in my view. – jgauffin Sep 9 '10 at 11:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.