1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
for (int i = 0; i < tblRows; i++)
{
TableRow tr = new TableRow();
for (int j = 0; j < tblCols; j++)
{
TableCell tc = new TableCell();
LinkButton txtBox = new LinkButton();
txtBox.Text = "";
txtBox.Width = 16;
txtBox.Height = 16;
txtBox.BorderStyle = BorderStyle.Dotted;
txtBox.BorderWidth = 1;
string MyID = i.ToString() + j.ToString();
txtBox.ID = MyID;
tc.Controls.Add(txtBox);
txtBox.Attributes.Add("runat", "server");
txtBox.Click += new System.EventHandler(txtBox_Click);
tc.BackColor = Color.Green;
tr.Cells.Add(tc);
tbl.Rows.Add(tr);
}
}
UpdatePanel1.ContentTemplateContainer.Controls.Add(tbl);
Panel5.Controls.Add(tbl); |
Partager