Dynamically generation in .Net
Looking for some help on Dynamically generating a report with endless count of users, text boxes on a web page.Control arrays have worked on Windows.But looking for help on the Web.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dennis SPosted Nov 30, 2005, 12:36 AM
Is this report in windows application or web page?
In windows application
//inside a loop
Label lbl = new Label();
lbl.Name = lbl + list[x];
//position the control
this.Controls.Add(lbl);
//same as with button controls
Dennis