Answers

Sep 04, 2007 - 07:35 PM
I assume you use ASP.NET. Why don't you build your subform dynamically in code and then have a loop and add three text boxes?
Cheers
Peter
Cheers
Peter

Sep 04, 2007 - 07:37 PM
Sorry here is a sample:
int i = 1
While (i <= Int32.Parse(txtAccompanies.Text))
{
page.Controls.Add(new TextBox());
}
Cheers
Peter
int i = 1
While (i <= Int32.Parse(txtAccompanies.Text))
{
page.Controls.Add(new TextBox());
}
Cheers
Peter

Mar 04, 2009 - 05:56 AM
The question looks to be abandoned by the user who asked it. If no action is taken within 2 days, a Quomon Moderator will consider closing the question and distributing the points.
The Quomon Team
The Quomon Team
Add New Comment