Checkbox column in a datalist question

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.
 
G

Guest

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

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top