protected void Button2_Click(object sender, EventArgs e)
 {
     try
     {
         string     data      = HdnReviews.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref data, "MyReport_CustomerReview");
     }
     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_CustomerReviewAll");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
Esempio n. 3
0
 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 btnExportToExcel_Click(object sender, EventArgs e)
 {
     try
     {
         string     table     = AppHdnValue.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref table, "Appointment_Report");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }
Esempio n. 5
0
 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 Button2_Click(object sender, EventArgs e)
 {
     try
     {
         string     data      = HdnGridData.Value;
         ExportData excelData = new ExportData();
         excelData.ExportToExcel(ref data, "MyReport_ItemsTags");
     }
     catch (Exception ex)
     {
         ProcessException(ex);
     }
 }