protected void btnAbandonedCartExportToExcel_Click(object sender, EventArgs e)
 {
     try
     {
         string table = hdnAbandonedCartValue.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref table, "MyReport_AbandonedCart");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void Button1_Click(object sender, EventArgs e)
 {
     try
     {
         string table = HdnValue.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref table, "MyReport_ItemReviewAll");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void btnExportDataToExcel_Click(object sender, EventArgs e)
 {
     try
     {
         string table = HdnValue.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref table, "MyReport_CouponPerUser");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonAbandonCart_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _cssAbandonCartHiddenValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_AbandonedCart");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void Button2_Click(object sender, EventArgs e)
 {
     try
     {
         string data = HdnReviews.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref data, "MyReport_ItemReview");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonItemReviewDetail_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvItemReviewDetailHdnValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_ItemReview");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonCustomerTags_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvCustomerTagHdn.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_StoreOrder");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonDownLoaded_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvDownloadedHiddenCsv.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_DownloadableItems");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonCouponPerUser_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvCouponPerUserHiddenValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_CouponPerUser");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonOrderedItem_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvOrderedItemHiddenValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_OrderedItems");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonTaxRate_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvTaxRateHdnValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_TaxRate");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonShippingCsv_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvShippingHiddenValue.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_StoreShipping");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
 protected void ButtonPopularTagsDetail_Click(object sender, System.EventArgs e)
 {
     try
     {
         string table = _csvPopularTagDetailHdn.Value;
         ExportData exportData = new ExportData();
         exportData.ExportToCsv(ref table, "MyReport_PopularTags");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }