How to bind set of reports to report viwer?
I want to print a set of invoice for my application. So I need to display all invoices in report viewer before they print. are there any methods to bind multiple reports to same report viewer using crystal reports or rdlc. I try rdlc but I couldn't find any way to do that. pl开发者_StackOverflow中文版ease any one can provide code sample or instruction in C#.net it's worth for me.
thank you.......
You can set the path in reportviewer from code behindlike so:
myReportViewerControl.LocalReport.ReportPath = "path/foo.rdlc";
精彩评论