protected void btn_gur_Click(object sender, EventArgs e) { WSCate.WSCategorias objTest = new WSCate.WSCategorias(); Categoria cate = new Categoria(); cate.Tipo = txt_categoria.Text; // cate.IdCategoria = Convert.ToInt32(txt_ciudad.Text); int ret = objTest.Insertar(cate); if (ret > 0) { Label1.Text = "guardado"; } else { Label1.Text = "error"; } }
protected void btn_guardar_Click(object sender, EventArgs e) { WSCate.WSCategorias objTest = new WSCate.WSCategorias(); Productos pro = new Productos(); pro.Descripcion = txt_descripcion.Text; pro.Id_Categoria = Convert.ToInt32(txt_categoria.Text); int ret = objTest.InsertarPro(pro); if (ret > 0) { Label1.Text = "guardado"; } else { Label1.Text = "error"; } }
protected void btn_eliminar_Click(object sender, EventArgs e) { WSCate.WSCategorias objTest = new WSCate.WSCategorias(); Categoria cate = new Categoria(); cate.Tipo = txt_categoria.Text; cate.IdCategoria = Convert.ToInt32(txt_id.Text); int ret = objTest.EliminarCate(cate); if (ret > 0) { Label1.Text = "eliminado"; } else { Label1.Text = "error"; } }
protected void btn_eliminar_Click(object sender, EventArgs e) { WSCate.WSCategorias objTest = new WSCate.WSCategorias(); Productos pro = new Productos(); pro.id_producto = Convert.ToInt32(txt_producto.Text); // cate.IdCategoria = Convert.ToInt32(txt_ciudad.Text); int ret = objTest.EliminarProducto(pro); if (ret > 0) { Label1.Text = "eliminado"; } else { Label1.Text = "error"; } }