Showing posts with label RDLC Report. Show all posts
Showing posts with label RDLC Report. Show all posts

Sunday, August 27, 2017

How to pass parameter to RDLC report in MVC

In this article I am going to explain how to create and pass parameter to RDLC report in MVC application.

Description:
I want to show report of State population and users can filter the search for particular state. I am going to use RDLC report to create and Reportviewer to show report.

Implementation:
Follow the below given steps to create RDLC report in MVC application:

MVC : Create RDLC report

In this article I am going to explain how to create RDLC report in MVC application

Description:
I want to show report of State population. I am going to use RDLC report to create and Reportviewer to show report.

Implementation:
Follow the below given steps to create RDLC report in MVC application:

Tuesday, October 18, 2016

How to add auto increment serial number column in RDLC report

Sunday, October 16, 2016

How to create sub report using RDLC report

In this article I am going to explain how to create sub report using rdlc report.


Description:
I want to create sub report using RDLC.

Implementation:
I have created 2 tables [districtpopulation ,StatePopulation] and insert some dummy records.

How to create sub report using RDLC report


After that create store procedure to fetch data from database.

Create proc GetStatePopulation
as begin

Select * from StatePopulation
End

Saturday, April 16, 2016

RDLC report: Export data to PDF, Excel and Word

Export RDLC report to PDF programmatically in asp.net

Friday, April 15, 2016

Export RDLC report to Excel programmatically in asp.net

Tuesday, July 28, 2015

Asp.net: Pass parameter to RDLC report

Sunday, July 26, 2015

Asp.net: Create RDLC report using Store procedure

In this tutorial I am going to explain how to create RDLC report using Store procedure in asp.net

Description:


I have a table Tb_Student and contain the information of student i.e. name, Address(City) and Roll number. In this example I am going to display the all student information in RDLC report.

Implementation:
I have created a table Tb_Student.
Create a store procedure to get data from database table

Friday, July 17, 2015

5 simple steps to Create RDLC Report in asp.net

In this article I am going to explain the 5 simple steps to Create RDLC Report in asp.net

Description:
In the previous article I have explained Implement Google like Custom Pagination in Datalist Control in Asp.net and Highlight The Current (selected) Page Number in Repeater Pagination.

Implementation:
I have created a table Student_Detail and having data. I want to display the detail of Students in Report. To create a report using RDLC follow the below given steps.