Thank you for reaching out to Microsoft Q & A forum.
To render a hosted SSRS report in an ASP.NET MVC application, a common approach is to use an <iframe> to display the report via URL access. For example:
<iframe width="100%" height="600px"
src="http://<ReportServer>/ReportServer?/Folder/ReportName&rs:Command=Render">
</iframe>
Simply replace the placeholders with your actual report server and report path. If your report requires parameters, you can pass them through the URL as query strings.
Alternatively, if you prefer using the ReportViewer control, you can embed it within a Web Forms page and load that page inside your MVC view.
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.