Base solution for your next web application
Open Closed

How to integrate Report viewer in Aspnetzero Core #7311


User avatar
0
Rechnerinfo created

Hi, We want to integrate SSRS with our project, project specfication is Angular 7 and Asp.net Core, please advise how to integrate it by following best practices.

also please advise which is the best suitable reporting tool to use with angular and ASP.net.


3 Answer(s)
  • User Avatar
    0
    alper created
    Support Team

    I don't have an experience on SSRS but if you have any problems while integrating I can help you to overcome the issue.

  • User Avatar
    0
    AlderCove created

    We integrated the SSRS report viewer with our Angular 7 Asp.Net core project. I'm not sure it would qualify as best practice, but it was a simple approach.

    The approach used an iframe that referenced a local IIS website running a simple Asp.net application with the embedded report viewer control. This enabled reports to be run and viewed in the angular front end and required very little programming.

    Our initial implementation utilized the SSRS web service to list the reports in the front end. We have since implemented a Report entity that holds the definition of the report, including a reference to the SSRS path and a permission name, so that it can be secured.

  • User Avatar
    0
    ismcagdas created
    Support Team

    Thanks @aldercove for sharing this.