valerielouse
New Member
I was thinking of generic reusable control for a wizard-like control. I know there are wizards control in asp.net vanilla, but the amount of input we collect in one step and the application logic we are supposed to obey are quite complicated and I feel we could manage a "single step" better as a usercontrol itself.However the thing I am imagining is I want to build a generic framework for the wizard. Something like the area where the step should display, area where the navigation buttons are present, etc etc. The way I imagine this is, this will be a user control with a tab container. I also plan to associate the steps (which are usercontrols) in the control markup itself. The only way I know to do the latter is you need to create a server control. So if I go with a server control how will I associate that server control with this "generic framework" stuff I mentioned above.