protected void BtnGuardar_Click(object sender, EventArgs e) { try { BllTipoBandeja.TipoBandeja ObjGrabar = new BllTipoBandeja.TipoBandeja(); if(TxtCodigo.Text!="") if (BllTipoBandeja.Exist(TxtCodigo.Text) == 0) { ObjGrabar.TiBaCodi = TxtCodigo.Text; ObjGrabar.TiBaDesc = TxtTipo.Text; ObjGrabar.TiBaEsta = ChkActivo.Checked; int r = ObjGrabar.Insert(); if (r > 0) { mensaje(Constantes.Guardado); FillTipoBandeja(); updateGrid.Update(); ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "script", "mostrarGrid();", true); } else { mensaje(Constantes.ErrorAlGuardar); } } } catch (Exception ex) { mensaje(Constantes.errorGeneral); } }