我有一个ListBox
关联到一个用户。用户需要能够选择一个或多个选项并将这些选项保存在 SQL 数据库中,但我只能保存一个选项。
当我创建我的表单时,我使用了“启用回发选项”并且在我的“选择模式”中我有:multiple
.
这是我的代码:
//IN MY FORM
if (!IsPostBack)
{
ClLinea_1 seleccion = new ClLinea_1();
DataSet ds = seleccion.sqlSelectLinea_1();
DataTable dt = ds.Tables[0];
ListBoxLinea_1.DataSource = dt;
ListBoxLinea_1.DataTextField = "descripcion";
ListBoxLinea_1.DataValueField = "id_linea_1";
ListBoxLinea_1.DataBind();
}
// IN MY BUTTON
protected void btnInsertaLinea_1_Click(object sender, EventArgs e)
{
ClLinea_1 inserta = new ClLinea_1();
inserta.SqlSeleccionLinea_1(int.Parse(ListBoxLinea_1.SelectedValue.),int.Parse
(txtUsuario.Text));
}