eriksv88
eriksv88

Reputation: 3528

More than a ASP:Wizard control

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

Answers (1)

sisve
sisve

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

Related Questions