Example #1
0
        private void PopulateCHGTotals(String grossExported)
        {
            RetrieveFromDB rtrvdb = new RetrieveFromDB();

            String fiscalYear = (String)Session["FiscalYear"];
            DataSet ds = rtrvdb.GetCHGTotals(fiscalYear, grossExported);
            Session["RevTotalsDs"] = ds;
            if (ds.Tables[0].Rows.Count > 0)
            {
                CHGTotalsTotalsPanel.Visible = true;

                CHGTotalsGridView.DataSource = ds;
                CHGTotalsGridView.DataBind();
            }
        }