Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add new table in tablecell in asp.net

Tags:

asp.net

cells

How to add a new table in tablecell... .

Table tblTasks = new Table();

TableRow tr = new TableRow();


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

something like that

like image 710
Dawood Ahmed Avatar asked Dec 05 '25 23:12

Dawood Ahmed


1 Answers

Create TableCell with your Table and add that cell like below

var cell =new TableCell();
cell.Controls.Add(new Table());
tr.Cells.Add(cell);
like image 142
Damith Avatar answered Dec 09 '25 20:12

Damith