/*
         * Llena la grilla de los clones con el año seleccionado
         */
        private void PoblarGrilla()
        {
            CatalogCodificacion cc = new CatalogCodificacion();

            this.gdvCodificacion.DataSource = cc.GetCodificacionPadres(valorAñoInt32);
            this.gdvCodificacion.DataBind();
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            CatalogCodificacion cc = new CatalogCodificacion();

            //PREGUNTA SI ES DISTINTO DE NULL PORQUE EL USUARIO PUEDE ESCRIBIR DESDE LA URL Y NO TENDRÍA AÑO ASIGNADO
            if (Request.QueryString["valor"] != null)
            {
                valorAñoString = Request.QueryString["valor"];
            }
            else
            {
                valorAñoString = "0";
            }
            valorAñoInt32 = Int32.Parse(valorAñoString);

            if (!Page.IsPostBack)
            {
                this.lblCodificacionAño.Text   += "(" + valorAñoInt32.ToString() + ")";
                this.gdvCodificacion.DataSource = cc.GetCodificacionPadres(valorAñoInt32);
                this.gdvCodificacion.DataBind();
            }
        }