Reputation: 25
Is it possible to create reports using the Standalone Microsoft SQL Server 2016 Report Builder for then later use the report with ASP.NET Webform deployed-published?
Please pardon my Ignorance, I've created reports using the built in SSRS in Visual Studio 2008 and Visual Studio 2010 and published with Webform to the hosting or dedicated server that works fine, but I am not sure that I could do the same creating the report using the Standalone SSRS 2016 and using it with my published ASP.NET WEB Form.
Thanks
Upvotes: 0
Views: 174
Reputation: 49039
While it is correct that rdl reports require report server?
If report server is available, then the client side rdl report viewer can be pointed to such reports.
And in most cases, a rdl report CAN be imported into the vs project, renamed as rdlc. Then some settings (such as processing mode = local = true) have to be changed.
So, such reports created with the reporting tools can be used in your asp.net webforms application, but "some" changes are required.
The changes and how to use such reports it outlined here:
Upvotes: 0