Wizard control in ASP.net
I just created two wizard steps in the ASP wizard control. One of the step is Edit Profile.
Is there any way to make the side bar step perform some kind of actions such as (page_load event) accessing database and displaying in the corresponding wizard step when i first clck the side bar step?
when i double click the step it is showing this mehod in the corresponding c# page.
protected void Wizard1_FinishButtonClick1(object sender, WizardNavigationEventArgs e)
{
}
If i write some coding, its not performing the task, but only displaying the wizard step i created.
Last edited by Gayathri79; March 2nd, 2010 at 01:16 AM..
|