それは私のテーブルです:
<asp:Table ID="Table1" runat="server">
<asp:TableRow>
<asp:TableCell>number</asp:TableCell>
<asp:TableCell ID="webCell"></asp:TableCell>
</asp:TableRow>
</asp:Table>
そして、それは私のサーバー側のコードです:
For i = 0 To IDsList.Length - 1
Dim chk As CheckBox = New CheckBox()
chk.ID = "webCatID" & Convert.ToString(i)
chk.Text = Convert.ToString(CatsName(i))
chk.BorderStyle = BorderStyle.None
chk.CssClass = "checkBox"
webCell.Controls.Add(chk) 'does not work, it does not webCell
Next
これらのチェックボックスをそのセルに追加するにはどうすればよいですか?