string msg = "";
string selectionResult = "";
foreach (ListItem li in CheckBoxList1.Items)
{
if (li.Selected == true)
msg += "<br>" + li.Text;
}
selectionResult = msg;
Related posts