More than a ASP:Wizard control
How can one have more than a Wizard control on the same pa开发者_开发问答ge without the "RequiredFieldValidator" will affect the other Wizard control?
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.
精彩评论