D
Dica
i've got a script that creates a new tablerow + tablecell and appends that
to a non dynamically created table control. a new row is added for each
recordset returned from my sql statement. within each tablecell, i place a
dynamically created checkbox control. i now need to fetch back the value of
the checkbox as follows:
foreach (Control c in tblServices.Controls) {
}
this doesn't work, however. if i step through with the debugger, the only
controls listed under tblServices are the tablerows, not the checkbox.
how do i navigate down to the checkbox control so i can fetch the value?
tks.
to a non dynamically created table control. a new row is added for each
recordset returned from my sql statement. within each tablecell, i place a
dynamically created checkbox control. i now need to fetch back the value of
the checkbox as follows:
foreach (Control c in tblServices.Controls) {
}
this doesn't work, however. if i step through with the debugger, the only
controls listed under tblServices are the tablerows, not the checkbox.
how do i navigate down to the checkbox control so i can fetch the value?
tks.