0
votes

I have several SSRS reports (RDL) created in SQL Server 2014. I want to run these multiple RDLs through Visual Studio 2015.

I am able to run one RDL through VS2015 by giving the server name and report path in the report viewer as shown in this ReportViewer image.

But I am not able to run multiple RDLs. Can someone help me out in this project?

1

1 Answers

0
votes

Here is a link. https://msdn.microsoft.com/en-us/library/aa337089.aspx

    reportViewer1.ProcessingMode = ProcessingMode.Local;  

    LocalReport localReport = reportViewer1.LocalReport;  

    localReport.ReportPath = "Sales Order Detail.rdl";