3

如何在表格单元格中添加新表格......

Table tblTasks = new Table();

TableRow tr = new TableRow();


tr.Cells.Add(new Table());

类似的东西

4

1 回答 1

3

使用您的表格创建TableCell并添加该单元格,如下所示

var cell =new TableCell();
cell.Controls.Add(new Table());
tr.Cells.Add(cell);
于 2013-07-09T06:23:35.443 回答