SSRS report - different versions of ReportViewer

mark goldin 691 Reputation points
2022-01-18T15:20:47.053+00:00

I am currently running version 15, which it is I think the latest. How can I also try previous versions?

Thanks

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,878 questions
0 comments No comments
{count} votes

Accepted answer
  1. Michael Taylor 51,346 Reputation points
    2022-01-18T16:25:57.773+00:00

    ReportViewer is a UI component of either your desktop or web app. In general you shouldn't need to worry about "previous versions" as your reports are being rendered by your app and you control the RV version. Additionally, at the end of the day, if you're using SSRS then RV is just the UI used to wrap the report that is generated on the server so outside the parameter UI the version of RV shouldn't matter for report rendering.

    If you want to try older versions of RV then you need to setup a test app (web or desktop) and reference the older RV versions. RV comes from Nuget so in your app you can install an older version of the RV package to get the older versions as defined here and here. Note that they only go back to v14 but that is 6 years ago and is probably far enough back. Prior to that they were part of the framework (which is no longer supported I believe) and before that they were standalone binaries (but that version of the framework isn't even available I believe).

    To install earlier versions of a package you'll need to use Package Manager in Visual Studio to downgrade from the latest version to an older version.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. mark goldin 691 Reputation points
    2022-01-18T16:36:16.64+00:00

    I am not using SSRS server, reports are running in Local Mode. My problem is that exporting reports to Excel is taking too long. I thought, maybe prev. versions of RV were more efficient in this regard.