protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                CsDailyReport TodayReport = new CsDailyReport(tnum, TableA, TableB, TableC, TableD, TableE, TableF, TableG);
                ConnectionClass.DisplayReport(TodayReport);

                ReportA.DataSource = TodayReport.aTable;
                ReportA.DataBind();

                ReportB.DataSource = TodayReport.bTable;
                ReportB.DataBind();


                ReportC.DataSource = TodayReport.cTable;
                ReportC.DataBind();



                ReportD.DataSource = TodayReport.dTable;
                ReportD.DataBind();

                ReportE.DataSource = TodayReport.fTable;
                ReportE.DataBind();



                ReportF.DataSource = TodayReport.gTable;
                ReportF.DataBind();
            }
            catch
            {
            }

            finally
            {
            }
        }