protected void Page_Load(object sender, EventArgs e)
{
//Reset the Wizard to step 1
Wizard1.ActiveStepIndex = 0;
}
protected void Wizard1_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{
//Reset the Wizard to step 1
Wizard1.ActiveStepIndex = 0;
}
|