protected void BtnGuardar_Click(object sender, EventArgs e) { if (TbIdCategoria.Text == string.Empty) { cat.Descripcion = TbDescripcion.Text; cat.Tipo = Convert.ToInt32(TbTipo.Text); if (cat.Insertar()) { Alert("Categoria Se Guardo Corectamente"); Limpiar(); } else { Alert("Categoria No Se Pudo Guardar Corectamente "); } } else { cat.Descripcion = TbDescripcion.Text; cat.Tipo = Convert.ToInt32(TbTipo.Text); if (cat.Modificar(TbIdCategoria.Text)) { Alert("Categoria Se Modificada Corectamente"); Limpiar(); } else { Alert(" Categoria No Se Modificar Corectamente"); } } }
private void button1_Click(object sender, EventArgs e) { Categorias categoria = new Categorias(); categoria.Descripcion = DescripciontextBox.Text; categoria.Insertar(); }
private void GuardarButton_Click(object sender, EventArgs e) { try { Validar(CategoriaIDTextBox, "El Id esta Vaicio!"); Validar(DescripcionTextBox, "La Descripcion esta Vacia!"); if (CategoriaIDTextBox.Text.Equals("") && !DescripcionTextBox.Text.Equals("")) { if (categoria.BuscarDescripcion(DescripcionTextBox.Text)) { MessageBox.Show("Esta Categoria ya existe!", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Warning); Limpiar(); DescripcionTextBox.Focus(); } else { LlenarDatos(categoria); if (categoria.Insertar()) { MessageBox.Show("Categoria guardada...", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information); GuardarButton.Enabled = false; } else { MessageBox.Show("Error al guardar!", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } else { if (!CategoriaIDTextBox.Text.Equals("") && categoria.Buscar(int.Parse(CategoriaIDTextBox.Text)) && !DescripcionTextBox.Text.Equals("")) { if (categoria.BuscarDescripcion(DescripcionTextBox.Text)) { LlenarDatos(categoria); if (categoria.Editar()) { MessageBox.Show("Categoria Modificada!", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Error al Modificar Categoria!", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Error al Modificar Categoria.\n Pues esta Cagoria No existe!", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } } catch (Exception exc) { throw exc; } }
private void GuardarButton_Click(object sender, EventArgs e) { Categorias categoria = new Categorias(); LlenarDatos(categoria); if (categoria.Insertar()) { MessageBox.Show("Categoria guardada...", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Error al guardar"); } }
protected void GuardarButton_Click(object sender, EventArgs e) { if (CategoriaIdTextBox.Text.Length > 0) { if (LLenarDatos()) { Categoria.CategoriaId = Seguridad.ValidarEntero(CategoriaIdTextBox.Text); if (Categoria.Editar()) { Mensajes.ShowToastr(this.Page, "Se Modifico", "Informacion", "Success"); Limpiar(); } else { Mensajes.ShowToastr(this.Page, "No Se Modifico", "Error", "Error"); } } else { Mensajes.ShowToastr(this.Page, "Faltan Datos", "Error", "Error"); } } else { if (LLenarDatos()) { if (Categoria.Insertar()) { Mensajes.ShowToastr(this.Page, "Se Registro", "Felicidades", "Success"); Limpiar(); } else { Mensajes.ShowToastr(this.Page, "No se pudo Registrar", "Error", "Error"); } } else { Mensajes.ShowToastr(this.Page, "Faltan Datos", "Error", "Error"); } } }