I would like to create a table with 5 columns. From there, I'll add cells as I see fit, automatically moving to the next row when the column is filled.I'm populating each cell with info from a row in a DataTable object. If you can imagine, the table will remain a fixed width, but grow in height as more items are added. Repeaters, maybe? I also have Telerik UI for AJAX, so if that route is a possibility, I'm open to it.
Code:
//create empty table with 5 columns here
foreach(DataRow row in table.Rows)
{
TableCell cell = new TableCell();
// I have the logic figured out to fill the cell here
// Now, how to insert these into the table, automatically moving to the next row when necessary
}