How to create RDLC report in asp.net core mvc 5 with Report Viewer
Loading
How to create RDLC report in asp.net core mvc 5 with Report Viewer
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mayooran NavamanyPosted Jun 26, 2023, 7:20 AM
Read below the Articles it's helpful for you
01. https://www.c-sharpcorner.com/UploadFile/1e050f/create-rdlc-reports-in-Asp-Net-web-applicationwebsite/
02. https://help.boldreports.com/report-viewer-sdk/aspnet-core-reporting/report-viewer/how-to/create-rdlc-report/
03. https://www.aspsnippets.com/Articles/Implementing-RDLC-Reports-in-ASPNet-MVC.aspx
Rajkiran SwainPosted Jun 26, 2023, 6:27 AM
Step 1: Install the necessary packages
Microsoft.ReportingServices.ReportViewerControl.WebFormspackage from NuGet. This package provides the Report Viewer control for ASP.NET Core.Step 2: Create a new RDLC report
Step 3: Configure Report Viewer in the View
Step 4: Configure the controller action to render the report
Make sure to replace "YourReport.rdlc" with the actual filename of your RDLC report.
Step 5: Configure the route to the controller action
Startup.csfile, add a route to map the URL to the controller action:With these steps, you should be able to create and display an RDLC report in ASP.NET Core MVC 5 using the Report Viewer control.