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 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 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 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 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);
     }
 }
示例#7
0
 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);
     }
 }