Unable to handle events of controls created at run time.

G

Guest

Hi,

My application has two methods which creates buttons at runtime. In one
method I am able to handle the events of the buttons created at run time, but
in other I am not.

The code structure is as follows:

page_load
{
...Do something
CreateFirstSetOfButtons()
}

private CreateFirstSetOfButtons()
{
// Create first set of buttons
for { i=1; i<5; i++)
{
LinkButton newButton1 = new LinkButton();
newButton1.Click += new EventHandler(this.Button1_Click);
}
... Do something
}

// Event handler of first set of buttons. The second buttons are created on
click of first buttons click.
private void Button1_Click(object sender, System.EventArgs e)
{
CreateSecondSetOfButtons();
}
private CreateSecondSetOfButtons()
{
// Create first set of buttons
for { i=1; i<2; i++)
{
LinkButton newButton2 = new LinkButton();
newButton2.Click += new EventHandler(this.Button2_Click); // This event
is never getting fired.
}
... Do something
}

private void Button2_Click(object sender, System.EventArgs e)
{
Response.Write("Hello");
}

On click of buttons created at page load I am able to catch the Click evet
of those buttons and the second set of buttons gets created. But when I click
on this second set of created buttons, the statement
Response.Write("Hello"); never gets executed.

An early resolution for the same will be really helpful.

Regards
Lalit
 
K

Karl Seguin

Lalit:
The 2nd event isn't firing because the 2nd buttons aren't being re-added.

Page_loads
--> First buttons created
First Button Clicked
--> First buttons recreated
--> Second buttons created
Second Button clicked
--> First buttons recreated
--> Second buttons NOT recreated

The 2nd buttons aren't being readded because they are only added when the
first buttons are clicked, which they weren't on the last trip. To solve
the issue you need to create the 2nd set of buttons under 2
circumstances...when the 1st set is clicked (Which you are doing) AND when
the 2nd set is clicked...

You might wanna check out
http://www.denisbauer.com/ASPNETControls/DynamicControlsPlaceholder.aspx
(free) for help.

Karl
 

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,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top