protected void btnAceptarCarga_ServerClick(object sender, EventArgs e) { try { listingredientes = lista.Traeraux(); BindingList <Comida> pedido = lista.TraerComidas(); lista.modComida(id, txtdescripcion.Value, float.Parse(txtprecio.Value)); foreach (Item item in listingredientes) { lista.AddNewcxi(item.Id, float.Parse(txtcant.Value.ToString()), id, item.tipo); } pnlCarga.Visible = false; pnlCargadiv.Visible = true; pedido = lista.TraerComidas(); ingredientes2.DataSource = pedido; ingredientes2.DataBind(); } catch (Exception ex) { Console.Write(ex); } }