We are looking to convert some Crystal Reports to use telerik. We have a subweb that displays all our reports based on report display type and what report is to be displayed.
All report requests are directed to the same page which takes a uniqueidentifier id to determine which report to display. We take our XML report data and convert it to a dataset to be used by the report.datasource. What I can't figure out is how to specify which report to use. A previous post said to use the following instead of instead of the IReportDocument syntax.
All report requests are directed to the same page which takes a uniqueidentifier id to determine which report to display. We take our XML report data and convert it to a dataset to be used by the report.datasource. What I can't figure out is how to specify which report to use. A previous post said to use the following instead of instead of the IReportDocument syntax.
Dim report As Telerik.Reporting.Report = New Report()
report.DataSource = myDataSet
ReportViewer1.Report = report
ReportViewer1.DataBind()
So, my question is, how do I specify which report to use? We have hundreds of reports and would like to stick with our convention of having one aspx page that includes the report viewer. The included VB.ReportLibrary would then have the report templates.
Thank You for your help