Is there a way that i can save data on each step in wizard control.
I want to save data when user clicks next button on each step.
I would like to save them to database , so that i can retrieve them back if user has opted to close and complete steps later without clicking finish button
Is there a way that i can save data on each step in wizard
Share
You can save data to Session or ViewState objects.
Also you can add you saving logic in wizard events: ActiveStepChanged, CancelButtonClick, FinishButtonClick, NextButtonClick, PreviousButtonClick, SideBarButtonClick.