protected void Agregar_Click(object sender, EventArgs e) { if (Nombre.Text != "" && Cantidad.Text != "" && Presentacion.HasFile && ddlCategoria.Text != "Categoria" && ddlMedida.Text != "Medida" && Marca.Text != "") { ObjEP.NombreProducto = Nombre.Text; ObjEP.CantidadProducto = Convert.ToInt16(Cantidad.Text); ObjEP.EstadoProducto = "3"; ObjEP.Marca = Marca.Text; ObjEP.MedidaProducto = ddlMedida.Text; ObjEP.CategoriaProducto = ddlCategoria.Text; string msn = ObjNP.InsertarProducto(ObjEP); Response.Redirect("productos.aspx"); } }
private void btnSave_Click(object sender, EventArgs e) { if (!Update) { try { epro.Nombre = txtNombre.Text; epro.Precioc = Convert.ToDecimal(txtpcompra.Text); epro.Preciov = Convert.ToDecimal(txtpventa.Text); epro.Stock = Convert.ToInt32(txtStock.Text); epro.Idcategoria = Convert.ToInt32(cbcat.SelectedValue); epro.Idmarca = Convert.ToInt32(cbmar.SelectedValue); npro.InsertarProducto(epro); MessageBox.Show("Se Guardo el Producto Correctamente!", "Mensaje del sistema"); Close(); } catch (Exception ex) { MessageBox.Show("No se pudo Guardar! Error..." + ex); } } else { try { epro.Idproducto = Convert.ToInt32(txtId.Text); epro.Nombre = txtNombre.Text; epro.Precioc = Convert.ToDecimal(txtpcompra.Text); epro.Preciov = Convert.ToDecimal(txtpventa.Text); epro.Stock = Convert.ToInt32(txtStock.Text); epro.Idcategoria = Convert.ToInt32(cbcat.SelectedValue); epro.Idmarca = Convert.ToInt32(cbmar.SelectedValue); npro.EditarProducto(epro); MessageBox.Show("Se Edito el Producto Correctamente!", "Mensaje del sistema"); Close(); Update = false; } catch (Exception ex) { MessageBox.Show("No se pudo Editar! Error..." + ex); } } }