Hi
inorder to get the list of selected checkbox list items , you need to just iterate through the loop of checkboxlist items.
Here is the sample..
ArrayList Selectedvalues = new ArrayList();
for (int i = 0; i < chbxList.Items.Count; i++)
{
if (chbxList.Items[i].Selected)
{
Selectedvalues.Add(chbxList.Items[i].Value);
}
}