Problem: Content Page with Wizard Control with UpdatePanel and Placeholder. Above the UpdatePanel is a DropDownList. I need to display different input controls below the drop-down list when the user changes the selection in the drop-down list. When the user clicks 'Next' on the wizard control, I need to be able to get the data out of those dynamic controls as well.

I know all the dynamic controls have to be created in the OnInit method in order to get the data back from those controls during the postback. However, when the drop-down list's SelectedIndexChanged event is fired, the OnInit method is called... then the PageLoad... and finally the handler for the SelectedIndexChanged event is called. ViewState hasn't been restored until well after the OnInit & PageLoad methods have been called, so there is no way to know what the user chose in the list box at the time OnInit is called... which exactly when I'm required to create the dynamic controls.

So... how do you solve this problem? Do you just have to write the entire page, or most of it, using JavaScript?

Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I tend to use an old school method for this type of requirement. I would write all of the controls that are needed in the update panel, with their Visible property set to false. Then, on post back read the drop down's state and set the approperate controls Visible property to true. This way there is no "dynamic" controls, and due to the fact that controls whose Visible property is false are not rendered, they are not downloaded until the user should see them.

link|improve this answer
Thank you David. I thought I had tried this and it wasn't working (I was wrong). One thing (for me) to keep in mind is that if you're using user controls to drop into the update panel placeholder and that user control has controls that cause postbacks, the user control will be hidden because the parent page's drop-down list's event handler will not be called because it didn't cause the post back. I worked around that issue by having all my child user controls expose a public event that it would fire when it caused a postback informing the parent page to "unhide" the appropriate placeholder. – Wil Bloodworth Nov 4 '10 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.