Checkbox column in a datalist question

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

Guest

I have a datalist that contains one unbound column with a checkbox. When the
user clicks a button, I need to count all the checked boxes in the datalist.
Can anyone give me an idea as to the best way to do this? Thanks.
 
Hi Derek,

You can try

CheckBox ck;
foreach (DataListItem item in Datalist.Items)
{
ck = (CheckBox)item.FindControl("Checkbox_ID");
// process
}

HTH

Elton Wang
(e-mail address removed)
 

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