Referencing a checkbox in a table row

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Created a checkbox and added it to a table row

NewCell = NewTableCell
Dim NewCheckBox As New CheckBox
NewCell.Controls.Add(NewCheckBox)
NewRow.Cells.Add(NewCell)

I know how to reference the table row I want after the table is built, but
how do I reference the checkbox's properties like .checked, etc.
 
Back
Top