How to I Iterator through a CheckBoxList?

  • Thread starter Thread starter Micheal
  • Start date Start date
Hi Micheal,

Here's one way:

foreach (System.Web.UI.WebControls.ListItem tempListBox in
CheckBoxList1.Items)
{
//Do something interesting with tempListBox each time
}


Good luck!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top