question about tablecell and its contols collection
- by Varyanica
i have a table (System.Web.UI.WebControls). each row does have three cells.
in cells' controls collection i placed some controls
TableCell cell = new TableCell();
cell.Font.Bold = false;
cell.BackColor = Color.FromName("lightblue");
cell.Controls.Add(new LiteralControl("????"));
…