Hello Sandeep
You can implement your button event handler like below to get all selected items Text -
protected void Button1_Click(object sender, EventArgs e)
{
List<string> lstItems = new List<string>();
foreach (ListItem listItem in CheckBoxList1.Items)
{
if (listItem.Selected)
{
lstItems.Add(listItem.Text);
}
}
}
//then you can implement database insertion logic
Thanks