How to integrate SSRS in asp.net core mvc

Rolando Y. Puno 0 Reputation points
2023-09-11T08:27:14.8066667+00:00

Hello Developers,
I am new in web development, i came from Windows Desktop development, Now problem calling SSRS using asp.net core.

I appreciate anyone can share the link.

Truly yours,

Rolando

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

3 answers

Sort by: Most helpful
  1. Olaf Helper 43,796 Reputation points
    2023-09-11T08:29:31.4133333+00:00
    0 comments No comments

  2. Olaf Helper 43,796 Reputation points
    2023-09-11T08:37:56.45+00:00
    0 comments No comments

  3. Bruce (SqlWork.com) 62,141 Reputation points
    2023-09-11T15:18:50.7366667+00:00

    Unfortunately the MvcReportViewer does not work with asp.net core. It internally hosts the webform control and calls it’s render. As webform controls are not supported on core this will not work.

    To host type the SSRS control, you need a 4.* website. The asp core site can use an iframe or link to the SSRS site.

    It should be possible to update the MvcReportViewer to proxy a call to the SSRS site instead of hosting the actual control.

    0 comments No comments