vote up 0 vote down star

I dynamically load a UserControl into a View that's in a MultiView control. Although the UserControl adds an event handler, the event never fires.

What am I missing here? Thanks!

Containing ASPX page:

protected override void OnPreRender(EventArgs e)
{
    if (MultiView1.ActiveViewIndex == 2) //If the tab is selected, load control
    {
        Control Presenter = LoadControl("Presenter.ascx");
        (MultiView1.ActiveViewIndex.Views[2].Controls.Add(Presenter);
    }
    base.OnPreRender(e);
}

Presenter.ascx.cs

override protected void OnInit(EventArgs e)
{
    Retry.Click += this.Retry_Click; //This is a .Net 2.0 project
    base.OnInit(e);
}


protected void Retry_Click(object sender, EventArgs e)
{
    //This never fires
}
flag

3 Answers

vote up 0 vote down check

I am thinking it is not firing b/c you are loading the control in your page's prerender event. Upon postback, the control is being lost b/c there is no view state for it. Therefore there is no control to fire its event. Try to load the control in the page's init event. Let us know what happens!

link|flag
That was it. Thx! I had to remove the If statement too because at OnPreInit, MultiView1.ActiveViewIndex is not set. – Mark Maslar Apr 27 at 14:32
you are welcome. – Dan Appleyard Apr 27 at 14:34
vote up 1 vote down

It sounds like the control is not being added after each post back, i would take out the if statement in the containing aspx page to see if that fixes the issue...im assuming Retry is a button?

link|flag
I had already tried removing the If statement -- no difference. Yes, Retry is a button. – Mark Maslar Apr 27 at 14:20
vote up 0 vote down

Postback event handling is done before rendering so the control is not present in the page in your case.

The life cycle events are fired in this order (skipped a few):

  1. Init
  2. Load
  3. PreRender
  4. Unload

And event handling is done between Load and PreRender (in case some events change the way the page should be rendered, it makes sense).

So just move your code that loads the Retry control to Load or Init.

Reference: Asp.Net Page Life Cycle Overview

link|flag

Your Answer

Get an OpenID
or

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