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)
 
Back
Top