protected void Button1_Click(object sender, EventArgs e) { Estados estado = new Estados(); Utilerias utileria = new Utilerias(); estado.EstadoId = utileria.ConvertirValor(BuscarIdTextBox.Text); estado.Descripcion = DescripcionTextBox.Text; bool suiche = false; try { if (string.IsNullOrWhiteSpace(BuscarIdTextBox.Text)) { suiche = estado.Insertar(); } else { suiche = estado.Editar(); } if (suiche) { Utilerias2.ShowToastr(this, "", "Exito!", "success"); Limpiar(); } } catch (Exception ex) { Utilerias2.ShowToastr(this, "Error", ex.Message, "error"); } }
protected void GuardarButton_Click(object sender, EventArgs e) { Estados estados = new Estados(); this.LLenarClase(estados); if (Request.QueryString["IdEstado"] != null) { estados.IdEstado = int.Parse(Request.QueryString["IdEstado"]); estados.Modificar(); MensajeLabel.Text = "El estado se ha Modificado Correctamente"; } else if (estados.Insertar()) { MensajeLabel.ForeColor = System.Drawing.Color.Green; MensajeLabel.Text = "Realizado con exito.."; LimpiarCampos(); } }