Dynamically created controls and the ASP.NET page lifecycle

Posted by Dirk on Stack Overflow See other posts from Stack Overflow or by Dirk
Published on 2010-05-10T22:00:58Z Indexed on 2010/05/11 10:34 UTC
Read the original article Hit count: 273

I'm working on an ASP.NET project in which the vast majority of the forms are generated dynamically at run time (form definitions are stored in a DB for customizability). Therefore, I have to dynamically create and add my controls to the Page every time OnLoad fires, regardless of IsPostBack. This has been working just fine and .NET takes care of managing ViewState for these controls.

     protected override void OnLoad(EventArgs e)
           {
                 base.OnLoad(e);
                 RenderDynamicControls()
           }
     private void RenderDynamicControls(){

         //1. call service layer to retrieve form definition
         //2. create and add controls to page container
     }

I have a new requirement in which if a user clicks on a given button (this button is created at design time) the page should be re-rendered in a slightly different way. So in addition to the code that executes in OnLoad (i.e. RenderDynamicControls()), I have this code:

  protected void MyButton_Click(object sender, EventArgs e)
       {
           RenderDynamicControlsALittleDifferently() 
       }

  private void RenderDynamicControlsALittleDifferently() (){

        //1. clear all controls from the page container added in RenderDynamicControls()

        //2. call service layer to retrieve form definition

        //3. create and add controls to page container
     }

My question is, is this really the only way to accomplish what I'm after? It seems beyond hacky to effectively render the form twice simply to respond to a button click. I gather from my research that this is simply how the page-lifecycle works in ASP.NET: Namely, that OnLoad must fire on every Postback before child events are invoked. Still, it's worthwhile to check with the SO community before having to drink the kool-aid.

On a related note, once I get this feature completed, I'm planning on throwing an UpdatePanel on the page to perform the page updates via Ajax. Any code/advice that make that transition easier would be much appreciated.

Thanks

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about page-lifecycle