protected void grvPavimentosSelec_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Select") { tblObraPavimento obrapav = new tblObraPavimento(); obrapav.cmpCoObra = Session["cmpCoObra"].ToString(); obrapav.cmpCoPavimento = e.CommandArgument.ToString(); obrapav.Save(Global.GetConnection()); Pesquisar(); } }
protected void btnAdciona_Click(object sender, EventArgs e) { if (lstPavimentos.SelectedIndex > -1) { tblObraPavimento obraPav = new tblObraPavimento(); obraPav.cmpCoObra = cmpCoObra; obraPav.cmpCoPavimento = lstPavimentos.SelectedValue; obraPav.Save(Global.GetConnection()); if (lstPavimentosObra.SelectedIndex > -1) { lstPavimentosObra.SelectedItem.Selected = false; } lstPavimentosObra.Items.Add(lstPavimentos.SelectedItem); lstPavimentos.Items.Remove(lstPavimentos.SelectedItem); lstPavimentos.SelectedIndex = 0; } }