up vote 1 down vote favorite
share [g+] share [fb]

I am adding controls dynamically during runtime using a conrolplace holder. i want to add buttons and handle their event. they will do the same thing but with different parameter. here is a sample of the code:

while (dataReader.Read())
{
      Button edit = new Button();

      PlaceHolderQuestions.Controls.Add(edit);
}

i need to handle the event of the buttons. Thanks

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

A couple of things:

Firstly you need to make sure the new Controls are added in the Page.OnInit event, so that they are added before the raised events are processed.

They also need to be added again on a postback!

They also need to have a unique ID set.

Finally you can handle the event just like you would in any C# app:

edit.Click += new EventHander(EditButton_Click);

and later in the code:

protected void EditButton_Click(object sender, EventArgs e)
{
  // Do Something
}
link|improve this answer
+1 for "make sure the new Controls are added in the Page.OnInit event"...a lot of people make this wrong – Juri Jul 6 '09 at 16:13
same as Juri ... +1 for OnInit ... common mistakes that can be frustrating to debug – Chris Nicol Jul 6 '09 at 16:17
The first time I did this it was not setting the ID that really got me for ages. – samjudson Jul 6 '09 at 16:20
thx man. but where shall i write this line? edit.Click += new EventHander(EditButton_Click); under the declaration of the button? – Ahmad Farid Jul 6 '09 at 16:33
Yes, right after the Button edit = new Button() line. – samjudson Jul 6 '09 at 16:37
show 2 more comments
feedback

You can just create a method, then add:

edit.Click += YourMethodName;

As long as the same button is created on postback before the eventhandler is raised, the event will fire.

link|improve this answer
thx man. but where shall i write this line? edit.Click += new EventHander(EditButton_Click); under the declaration of the button – Ahmad Farid Jul 6 '09 at 16:36
feedback

Your Answer

 
or
required, but never shown

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