Add Step to Manage ASP.NET Wizard

Is there a way to add steps to the dynamic Wizard controls and keep the current state? I use the following code to add a step, this is normal. But after I click another step and callback, this step is gone again.

WizardStep step = new WizardStep(); 
//... Customize here... 
Wizard1.WizardSteps.Add(step);

Regards,

+3
source share
2 answers

When using dynamic controls in ASP.Net, you need to add them to the control tree each time the page loads. There are a number of articles on this entire process on the Infinities Loop blog .

, , , .

+1

oninit. oninit , , .

0

Source: https://habr.com/ru/post/1738621/


All Articles