This gives you every Checkbox on the page. You can change form1 to whatever control you want to find inside.
foreach (Control ctl in form1.Controls) { if (ctl is CheckBox) { } }
Alternatively, if you know the identifier of the control:
form1.FindControl("id");
source share