I am creating a report page that display multiple tables with the same format but different content. The number of tables are determined at runtime, but the number of columns and rows are pre-determined.
Right now I have to create the html table at runtime and insert row by row, cell by cell, and apply format.
I wonder whether I can leave a hard-coded table (runat=server) in the aspx page and use it as a template to create multiple tables at runtime. This way, I do not have to do any formatting.
Thanks in advance.
Seaport
Right now I have to create the html table at runtime and insert row by row, cell by cell, and apply format.
I wonder whether I can leave a hard-coded table (runat=server) in the aspx page and use it as a template to create multiple tables at runtime. This way, I do not have to do any formatting.
Thanks in advance.
Seaport