//Get items that are checked from a checlistbox and load into a listitem object
List<ListItem> Citems = uxchkCustomers.Items.Cast<ListItem>().Where(n => n.Selected).ToList();
if (Citems.Count != 0)
{
//do something like insert them into the listview
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.