Problem: A user should be able to select a number of Reports that are to be included in a ReportBook.
(1) How do I go about showing the Available Reports e.g. in a DropDown List that can be included in a ReportBook.
(2) How do I add the selected Reports to a ReportBook programmatically.
For (2), I know I could for example add the eventual selected Reports as follows:
ReportBook reportBook = new ReportBook();
reportBook.Reports.Add(new UserSelectedReport);
ReportViewer1.Report = reportBook;
reportBook.Reports.Add(new UserSelectedReport);
ReportViewer1.Report = reportBook;
But how can I ensure that UserSelectedReport is linked to a ReportPage that the user selected.
Note: The Reports that are selected are saved in a DatabaseTable ("ReportPages") which gives the ReportPageName and UserID.
Hopefully the above is clear.