protected void btnExcluir_Click(object sender, EventArgs e) { abastecimento = (Session["abastecimento"] as Abastecimento); abastecimento.deletar(); try { abastecimento.aplicar(new DAOAbastecimento(arquivo)); Response.Redirect("default.aspx"); } catch (Exception Ex) { lblMsgErro.Visible = true; lblMsgErro.Text = Ex.Message; } }
protected void ibtGravar_Click(object sender, ImageClickEventArgs e) { abastecimento = (Session["abastecimento"] as Abastecimento); setDados(); try { abastecimento.aplicar(new DAOAbastecimento()); Response.Redirect("lancaAbastec.aspx"); } catch (Exception Ex) { lbMsgErro.Visible = true; lbMsgErro.Text = Ex.Message; } }
protected void btnGravar_Click(object sender, EventArgs e) { setDados(); try { abastecimento.aplicar(new DAOAbastecimento(arquivo)); //Session["prox_pagina"] = "pesqVeiculo.aspx"; Response.Redirect("default.aspx"); } catch (Exception Ex) { lblMsgErro.Visible = true; lblMsgErro.Text = Ex.Message; } }