我有一个表(System.Web.UI.WebControls)。每行确实有三个单元格。在单元格的控件集合中,我放置了一些控件
TableCell cell = new TableCell();
cell.Font.Bold = false;
cell.BackColor = Color.FromName("lightblue");
cell.Controls.Add(new LiteralControl("Дата"));
row.Cells.Add(cell);
TableCell c3 = new TableCell();
c3.Controls.Add(new CheckBox());
r.Cells.Add(c3);
我看到 CheckBox 存储了一个值,但我不知道如何获取它。你能告诉我怎么做吗?