Home All Groups Group Topic Archive Search About
Author
12 Dec 2006 10:29 AM
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
-----------------------------------------------------
Thanks!

James