How to integrate SSRS in asp.net core mvc
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
3 answers
Sort by: Most helpful
-
-
Olaf Helper 43,901 Reputation points
2023-09-11T08:37:56.45+00:00 -
Bruce (SqlWork.com) 63,746 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.