vote up 1 vote down star

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

flag

43% accept rate

2 Answers

vote up 4 vote down check

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|flag
+1 for "make sure the new Controls are added in the Page.OnInit event"...a lot of people make this wrong – Juri Jul 6 at 16:13
same as Juri ... +1 for OnInit ... common mistakes that can be frustrating to debug – Chris Nicol Jul 6 at 16:17
The first time I did this it was not setting the ID that really got me for ages. – samjudson Jul 6 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 at 16:33
Yes, right after the Button edit = new Button() line. – samjudson Jul 6 at 16:37
show 2 more comments
vote up 0 vote down

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|flag
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 at 16:36

Your Answer

Get an OpenID
or

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