Пример #1
0
        private void PopulateDifferentialRevTotal()
        {
            StoredProcedures sp = new StoredProcedures();

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

            Session["RevTotalsDs"] = ds;

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

            }
        }