protected void DisplayOrders(string orderdate, int customerNumber)
        {
            ds  = BLL.GetOrdersByTimePeriodAndCustID(orderdate, customerNumber);
            dt1 = ds.Tables[0];

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