标签: asp.net cells
如何在tablecell中添加新表...
Table tblTasks = new Table(); TableRow tr = new TableRow(); tr.Cells.Add(new Table());
类似的东西
答案 0 :(得分:2)
使用您的表创建TableCell并添加如下所示的单元格
TableCell
var cell =new TableCell(); cell.Controls.Add(new Table()); tr.Cells.Add(cell);