コード例 #1
0
 /*
  * Llena la grilla de produccion con el año seleccionado
  */
 private void PoblarGrilla()
 {
     try
     {
         CatalogProduccion cp = new CatalogProduccion();
         this.gdvProduccion.DataSource = cp.GetFiltrarProduccionPorVariedad(valorAñoInt32);
         this.gdvProduccion.DataBind();
     }
     catch (Exception ex)
     {
     }
 }
コード例 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            CatalogProduccion cp = new CatalogProduccion();

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

            if (!Page.IsPostBack)
            {
                this.lblProduccionAño.Text   += "(" + valorAñoInt32.ToString() + ")";
                this.gdvProduccion.DataSource = cp.GetFiltrarProduccionPorVariedad(valorAñoInt32);
                this.gdvProduccion.DataBind();
            }
        }