
Hi,
I am using actipro wizard v1.0.3705. Let us say we have two wizards -"Wizard_1 & wizard_2"
On wizard_2 page load, I am disabling "Next" button using the below code.
private void wizard_2_Load(object sender, EventArgs e)
{
Wizard.NextButtonEnabled = false;
}
For the first time, the Next button was disabled as expected.
But, If I go Back to the previous wizard (Wizard_1) and come back to Wizard_2, the Next button is getting enabled. Observed that the Load() event is not getting fired for the wizard_2 for second time. Which Event handler I need to use to achieve this?
Thanks in advance.
Jagadeesh