Hi
I have one report with multiple Stored Procedure(return datatable) to bind
below is the code i have in aspx.cs page
Telerik.Reporting.ObjectDataSource objectDataSource = new Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = //How to bind all datatable from aspx.cs page to my Reporttab class
// Creating a new report
ReportTab report = new ReportTab ();
// Assigning the ObjectDataSource component to the DataSource property of the report.
report.DataSource = objectDataSource;
// Use the InstanceReportSource to pass the report to the viewer for displaying
Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
reportSource.ReportDocument = report;
// Assigning the report to the report viewer.
ReportViewer1.ReportSource = reportSource;
If there is any online sample it will be great for people like me
Please Guide me
Karthik.K
I have one report with multiple Stored Procedure(return datatable) to bind
below is the code i have in aspx.cs page
Telerik.Reporting.ObjectDataSource objectDataSource = new Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = //How to bind all datatable from aspx.cs page to my Reporttab class
// Creating a new report
ReportTab report = new ReportTab ();
// Assigning the ObjectDataSource component to the DataSource property of the report.
report.DataSource = objectDataSource;
// Use the InstanceReportSource to pass the report to the viewer for displaying
Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
reportSource.ReportDocument = report;
// Assigning the report to the report viewer.
ReportViewer1.ReportSource = reportSource;
If there is any online sample it will be great for people like me
Please Guide me
Karthik.K