Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Asp.net. how can I access every checkbox exists in the page using C# code ?

share|improve this question
1  
You can access checkboxes via their IDs if they are server-control. – AVD Dec 15 '11 at 6:46

2 Answers

up vote 7 down vote accepted

This gets you every Checkbox on the page. You can change the form1 to whatever control you want to search inside of.

 foreach (Control ctl in form1.Controls)
        {
            if (ctl is CheckBox)
            {

            }
        }

Alternatively if you know the Id's of the control you can just go

form1.FindControl("id");
share|improve this answer
void doIt(Control parent)
{
   foreach (Control c in parent.Controls)
   {
     if (c.GetType().ToString().Equals("System.Web.UI.WebControls.CheckBox")
         && c.ID == null)
     {
            //do something
     }
   }
 }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.