I want to speed ChechBoxList's getting the selected items, the normal approach is
foreach (ListItem li in checkListBox.Items)
{
if (li.Selected)
{
}
}
but if I've 6000 items in the CheckListBox, that's mean I should go through the 6000 items to know which is selected. Performance POOOOOOR!!!
Is there way to get just selected ItemsCollection ??