by pietman
24. August 2009 18:35
foreach (ListItem b in CheckBoxLab.Items)
{
if (b.Selected)
.......
also to clear all the select boxes (select none funtion):
foreach (ListItem l in ((ListItemCollection)CheckBoxLab.Items))
{
l.Selected = false;
}
b4cd5038-6d7c-4ddc-9a34-8ec91b8f9522|0|.0
Tags:
c#