Oto przykładowy kod, który tworzy THEAD, TBODY i TFooter.
Można w zasadzie zawsze użyć obiektu TableRow prostu zresetować własność TableSection.
Table table = new System.Web.UI.WebControls.Table();
TableRow tableRow;
TableCell tableCell;
tableRow = new TableRow();
tableRow.TableSection = TableRowSection.TableHeader;
tableCell = new TableCell();
tableCell.Text = "HEADER";
tableRow.Cells.Add(tableCell);
table.Rows.Add(tableRow);
tableRow = new TableRow();
tableRow.TableSection = TableRowSection.TableBody;
tableCell = new TableCell();
tableCell.Text = "BODY";
tableRow.Cells.Add(tableCell);
table.Rows.Add(tableRow);
tableRow = new TableRow();
tableRow.TableSection = TableRowSection.TableFooter;
tableCell = new TableCell();
tableCell.Text = "FOOTER";
tableRow.Cells.Add(tableCell);
table.Rows.Add(tableRow);
plhTest.Controls.Add(table);
Chociaż chciałbym zaproponować budowę tabelę w HTML i bezpośrednie dołączanie do strony.
Jakoś przeczytałem to jako "wątek" i nie miało to absolutnie żadnego sensu. Przepraszam, że przeszkadzam. –
To samo! (15 denerwujących postaci, które zajmują miejsce) – Jagd