And then you can add from your code rows and elements dynamically.
Dim FirstRow As New TableRow
Dim FirstCell As New TableCell
Dim YourTextBox As New TextBox
FirstCell.Controls.Add(YourTextBox)
FirstRow.Cells.Add(FirstCell)
YourTable.Rows.Add(FirstRow)
hannous
Member
203 Points
56 Posts
Re: Adding new rows to HTML table dynamically
Mar 16, 2007 08:03 AM|LINK
I suggest you use Table object instead of the HTML table. It will solve your problem.
And then you can add from your code rows and elements dynamically.
Dynamic Control Generation Dynamic Row Table