Hi,
I would like to ask why setting the size of a TableCell when dynamically rendering the ASP.NET table does not take in effect?
for example:
Table table = new Table();
TableRow row = new TableRow();
TableCell cell = new TableCell;
cell.Width = 30;
cell.Height = 30;
row.Cells.Add(cell);
//.... 10 more cells
table.Rows.Add(row);
why are the size of the cells unchanged?