Khash
Khash

Reputation: 2570

How to change the template for the ValidationSummary

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

Answers (1)

Mauricio Scheffer
Mauricio Scheffer

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

Related Questions