因为报表里面包含子报表,子报表的数据时动态的Table,在MVC的框架下,如何制定主报表的URL,没有rpx文件,是用cs文件弄的设计文件。
在Action里面
PrintAddListReport report = new PrintAddListReport();//定义的设计文件。
report.ShowParameterUI = false;
report.DataSource = pai;
ViewBag.Report = report;
return View("ReportAddPrint");
在View里面也就是ActiveReportsWeb:WebViewer控件。
如何在Action里面制定某一个服务器的报表部署文件。Web服务器为A,有报表的服务器部署在B上面,如何让A的代码访问B服务器上的文件。 |
|