protected void Button1_Click(object sender, EventArgs e)
{
string s = "";
foreach (ListItem li in CheckBoxList1.Items)
{
if (li.Selected) s += li.Value + ",";
}
Label1.Text = s.TrimEnd(',');
}