0

それは私のテーブルです:

<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

これらのチェックボックスをそのセルに追加するにはどうすればよいですか?

4

1 に答える 1

1

WebCellではないrunat=serverため、コードビハインドで参照できません。追加します。

<asp:TableCell ID="webCell" runat="server"></asp:TableCell>
于 2013-02-17T20:53:34.747 に答える