How can I display multiple validation summaries at one time? I currently have three different validation groups on a page for different sections of the page. Basically, the first section should be validated by one validation group, the second section should validate both the the first and section section and the third should validate all three.
I've got the following javascript which validates properly, but only the last validation summary is visible, the first two don't appear (but the red asterisks next to the controls do appear).
function ValidateSection3() {
var validated = Page_ClientValidate("vgSection1");
if (validated) {
validated = Page_ClientValidate("vgSection2");
if (validated)
validated = Page_ClientValidate("vgSection3");
}
return validated;
}
Is there any way to validate all three groups and show the summaries for all three?
Thanks!!