Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I always seem to struggle with asp.net page cycle and dynamically created controls.

I have a asp:table that is created in !isPostBack in page_load (i have tried creating it in page load, page_init onint)

the table is created with cells that container a LinkButton:

LinkButton lb = new LinkButton();
lb.Text = cabinet.CabinetName;
lb.CssClass = "child";
lb.Click += new EventHandler(btnChange_Folder);
lb.CommandArgument = cabinet.Id.ToString();

Now the problem is, whenver the Linkbutton is clicked, it doesnt fire and the table disappears.

I know its to do with the page cycle.

So my next action I try is to put the LoadTable() call outside the !IsPostBack block so its loaded everytime..

This seems to work, except it requires me to press each button twice for it to fire...

share|improve this question
May be you are adding controls twice. – AVD Aug 16 '12 at 3:13

1 Answer

up vote 0 down vote accepted

You have to specify an ID

LinkButton lb = new LinkButton();
lb.Text = cabinet.CabinetName;
lb.ID= "ID_youwant";
lb.CssClass = "child";
lb.Click += new EventHandler(btnChange_Folder);
lb.CommandArgument = cabinet.Id.ToString();
share|improve this answer
TOO Easy :) thanks so much – michael Aug 16 '12 at 3:36
you are welcome my friend ;-) – Hassan Boutougha Aug 16 '12 at 3:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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