Dynamically loaded user control events not firing on first click

E

Earl Teigrob

PROBLEM:
When a user control is loaded into a PlaceHolder control more than once, the
events do not fire on the first click of a control on the dynamically loaded
user control. In other words, the first time the control is dynamically
loaded, everything works fine. After that, if the control is loaded again
from the page button event handler, the user controls events fail to fire on
the first click

NOTE: I (believe I) am rebuilding all of the controls each time.

EXAMPLE:
I have created a very simple example to illistrate this.
In this example, when the button on the page is pressed once, it loads the
user control and the events of the user control work fine. If, however, the
page button is pressed again, the control is reloaded into the placeholder
but the user control events are lost on the first click of an event firing
control (button in this example). After the first click on the user control
button, the control buttons events start working again.

I am using this in a much more complex senerio and need to find out what I
am doing wrong.

Thank you for your help

Earl

USER CONTROL:
The user control consists of one button and a literal and the botton event
is:

private void Button1_Click(object sender, System.EventArgs e)
{

Literal1.Text="Hello World";
}

ASPX PAGE THAT LOADS CONTROL
The loading page consists of a placeholder control and a button with the
following property and event handlers

private void Page_Load(object sender, System.EventArgs e)
{
if (ControlLoaded)
LoadUserControl();
}
private void Button1_Click(object sender, System.EventArgs e)
{
LoadUserControl();
}

private void LoadUserControl()
{
PlaceHolder2.Controls.Clear();

PlaceHolder2.Controls.Add(Page.LoadControl("~/test/DynamicLoadUserCont.ascx"
));
ControlLoaded=true;
}

public bool ControlLoaded
{
get
{
Object s = ViewState["ControlLoaded"];
return ((s==null)?false:(bool)s);
}

set
{
ViewState["ControlLoaded"] = value;
}
}
 
N

nfedin

You problem is that you do not give you dynamically loaded control an
ID. So .Net gives your control it's own name, usually something like
_ctl2 or _ctl3. What is happening is that the name given to your
control is changing. If you explicitly define the ID, this won't
happen.

i.e. MyControl.ID = "MyControl"

The best way to understand this is to use Tracing in the web.config
and look at the control tree.

Neil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top