Here's a curious case: I have a form with several data-input controls on it. A sub-set of these controls can be shown / hidden by checking a checkbox. All controls and their associcated Validators belong to a ValidationGroup called "Advanced", as does the asp:Button Submit button and a ValidationSummary.
The thing is, I don't want the sub-set of fields to be validated if they are hidden; they are only required if they are visible.
A really unpleasant way of doing it would be to have another asp:button that gets shown / hidden along with the extra fields, and the normal submit button gets show / hidden, but add in another couple of sub-sets of fields and it gets a bit messy...
Any thoughts? Would dearly love to stick with my tried and trusted Validation controls...
Thank you,
Mike K.