Actually i am new one for Reporting in asp.net C#
I have 3 data sources.
One data source I want to display on same report as DataList Format in Ractangele control of report.
The other two data source I want to merge code behind and then assign it to the same report and display as a gird format in Table control of report.
So how can I do this approach can any one paste code here where i get idea.
Also I want to use input parameters for the report.
Can I assign dynamically values from datatable to the report.rdlc TextBoxes like this
I have 3 data sources.
One data source I want to display on same report as DataList Format in Ractangele control of report.
The other two data source I want to merge code behind and then assign it to the same report and display as a gird format in Table control of report.
So how can I do this approach can any one paste code here where i get idea.
Also I want to use input parameters for the report.
Can I assign dynamically values from datatable to the report.rdlc TextBoxes like this
Code:
MyText = CType(ReportDocument.ReportDefinition.ReportObjects(Text3), TextObject); MyText.Text = ds.Table(0).Row(0).Item(0).ToString() ;
Comment