このコードをループして、選択した CheckBoxList 項目を保存したいと思います。どうすればいいですか?
String insCmd = "Insert into Sale (Name, price) values (@Name, @price)";
SqlCommand insertUser = new SqlCommand(insCmd, myConnection);
insertUser.Parameters.AddWithValue("@Name", CheckBoxList1.SelectedItem.ToString());
insertUser.Parameters.AddWithValue("@price", Convert.ToDecimal(TextBox3.Text));
try
{
myConnection.Open();
insertUser.ExecuteNonQuery();
myConnection.Close();
}
catch (Exception er)
{
Response.Write("<script>alert('Error While Input')</script>");
}