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.>
You can try this:-
string values = ""; foreach(ListItem item in myCBL.Items){ if(item.Selected) { values += item.Value.ToString() + ","; } } values = values.TrimEnd(','); //To eliminate comma in last.