protected void Page_Load(object sender, EventArgs e)
        {
            string idQuery = Request.QueryString["id"];

            if (string.IsNullOrWhiteSpace(idQuery))
            {
                Response.Redirect("Default.aspx");
                Response.End();
            }

            if (!IsPostBack)
            {
                int       id        = Convert.ToInt32(idQuery);
                Categoria categoria = categoriasNegocio.ObtenerCategoria(id);
                txtNombreCategoria.Text = categoria.Nombre;
                txtDescripcion.Text     = categoria.Descripcion;
            }
        }