protected void btnBorrar_Click(object sender, EventArgs e)
        {
            CategoriaNegocio categoriaNegocio = new CategoriaNegocio();

            categoriaNegocio.Baja(Request.QueryString["ID"]);
            Response.Redirect("ABM_Categorias.aspx");
        }
        protected void Unnamed_Click(object sender, EventArgs e)
        {
            Categoria        categoria = new Categoria();
            CategoriaNegocio negocio   = new CategoriaNegocio();

            categoria.Nombre = txtNombre.Text;
            negocio.Baja(categoria);
        }