J
James Wong
Dear Sir,
I want to create some dynamic checkbox controls into the table.
How can I get these controls after the form is submitted.
-----------------------------------------------------
e.g.
For i = 1 to 9
trwRow = New TableRow
chkCheckBox = New CheckBox
chkCheckBox.ID = "c" + CStr(i)
tclCell = New TableCell
tclCell.Controls.Add(chkCheckBox)
trwRow.Cells.Add(tclCell)
Next
I want to create some dynamic checkbox controls into the table.
How can I get these controls after the form is submitted.
-----------------------------------------------------
e.g.
For i = 1 to 9
trwRow = New TableRow
chkCheckBox = New CheckBox
chkCheckBox.ID = "c" + CStr(i)
tclCell = New TableCell
tclCell.Controls.Add(chkCheckBox)
trwRow.Cells.Add(tclCell)
Next