SoFunction
Updated on 2025-03-07

c# table control usage


for (int i = 0; i < 10; i++)
{
TableRow tblrow = new TableRow();
for (int j = 0; j < 10; j++)
{
TableCell tblcell = new TableCell();
= "cell";
= 1;
(tblcell);
}
(tblrow);
}