I have a CheckBoxList which I\'m populating with data. When I attempt to retrieve the checked items from the list I can only grab the item ordinal, I cannot get the value.>
//Simple example code:
foreach (var item in YourCheckedListBox.CheckedItems) {List.Add(item);}