Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
Name Year DOB Phone
dhilip 1988 56 0900889566
arun 1988 56 6546456

ScName Address District Phone
St.Johns Bangalore Bangalore 0900889566
Govt TNagar Chennai 6546456


I want display like above format in rdlc report in Asp.net. Data Will be come from two tables.

Let me know, Can we use multiple reports in one RDLC Report? If possible, How to create multiple reports?
Posted

1 solution

you can use supreport it will be satisfying your need and it will be more efficient, create report with Name Year DOB Phone, and the subreport with ScName Address District Phone, after you set the main report datasource you need to fill the subreport datasource in the function (BindReport) with code like this:

C#
cryRpt.Subreports("SubReportName").SetDataSource(dt2)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900