Example #1
0
        private void PopulateDifferentialRevTotal()
        {
            RetrieveFromDB rtrvdb = new RetrieveFromDB();

            String fiscalYear = (String)Session["FiscalYear"];
            DataSet ds = rtrvdb.GetDifferentialRevTotal(fiscalYear);
            Session["RevTotalsDs"] = ds;

            if (ds.Tables[0].Rows.Count > 0)
            {
                CHGTotalsTotalsPanel.Visible = true;

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

            }
        }