How to Embed SSRS report in ASP.Net CORE

Shashank Gowda 0 Reputation points
2023-02-09T08:18:16.12+00:00

To Embed SSRS report in existing web We had the report viewer in ASP.NET and we have migrated to asp.net core we are not able to embed SSRS report Can we get some help

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,135 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Zhi Lv - MSFT 32,006 Reputation points Microsoft Vendor
    2023-02-10T02:57:42.9533333+00:00

    Hi @Shashank Gowda

    As far as I know, the ReportViewer apply to the ASP.NET 4.x (.NET Framework) webform application, it doesn't apply to the .NET application (.NET Core 1.0 - 3.1, .NET 5, and later versions of .NET). The difference between .NET and .NET Framework, see Choose between ASP.NET 4.x and ASP.NET Core.

    In asp.net core application, to display the SSRS reports, you can create a .NET Framework application and use a webform to display the report, then in the asp.net core application, use an Iframe tag or send http request to call the web page and get the report. Besides, you can also search some third-party package, perhaps they can help to display the SSRS reports in the asp.net core application.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best regards,

    Dillion