Reputation: 3528
How can one have more than a Wizard control on the same page without the "RequiredFieldValidator" will affect the other Wizard control?
Upvotes: 0
Views: 154
Reputation: 19781
Set the ValidationGroup property on all validators that should be grouped together, and call the Page.Validate(String) with the name of the validation group you want to validate.
You may need to disable clientside validation for this to work properly.
Upvotes: 1