예제 #1
0
 public ActionResult ReportViewer(string reportID)
 {
     if (reportID == null)
     {
         reportID = "";
     }
     return(View(LHReportHelper.CreateModel(reportID)));
 }
예제 #2
0
 public ActionResult ReportViewerExportTo(string reportID)
 {
     return(ReportViewerExtension.ExportTo(LHReportHelper.CreateModel(reportID).Report));
 }
예제 #3
0
 public ActionResult ReportParametersPartial(string reportID)
 {
     return(PartialView("ReportParametersPartial", LHReportHelper.CreateModel(reportID)));
 }