Reputation: 2570
In ASP MVC (RC 1), how can I change the default template for ValidationSummary?
By default it ValidationSummary() shows a bullet list of errors in red. How can I change this? (i.e Have images instead of bullets)
Upvotes: 1
Views: 2653
Reputation: 99750
You could use CSS instead of trying to change the html... for example to change the bullets to an image you can use list-style-image.
Upvotes: 2