String str = " "; foreach (ListItem item in CheckBoxList1.Items) { if (item.Selected) { str = item.Text + "," + str; } } label.Text = str;