Reputation: 923
I am running an ASP.NET application which displays SSRS reports.
This works fine in prod., using SQL Server 2012, but on my dev machine I'm running SQL Server 2016 with SSRS 2016.
On here, the report header shows (parameter selection), but no report body. Instead, I get a rather broken Print Dialog.
Any ideas what has changed between those versions to cause this? Thanks
Upvotes: 1
Views: 349
Reputation: 167
You need the newest version of report viewer (13) to work with SSRS 2016. Microsoft has a preview release available as a nuget package under the name Microsoft.ReportingServices.ReportViewerControl.WebForms.Preview
.
If you are still using SQL Server 2012 or 2014 in production, then I would probably stick with the older report viewer when you deploy your code.
Upvotes: 0