public string GetStageSummaryData() { StageSummary ss = new StageSummary(Request); return ss.ToJson(); }
public FileResult DownloadStageSumExcel() { StageSummary ss = new StageSummary(Request); RenderType renderType; if (Request["renderType"] == "2") { renderType = RenderType.Vertical; } else { renderType = RenderType.Horizontal; } string tempFile = ExcelHelper.DataTableToExcel(ss.Data, renderType); return File(tempFile, "application/ms-excel", "ExportFile.xlsx"); }