I have imported a dataset.
' Creating and configuring the ObjectDataSource component:
Dim objectDataSource As New Telerik.Reporting.ObjectDataSource()
objectDataSource.DataSource = GetData() ' GetData returns a DataTable
I have already drawn up a report with the appropriate dataset.
Dim clientReportSource As New Telerik.ReportViewer.Html5.WebForms.ReportSource
clientReportSource.IdentifierType = Telerik.ReportViewer.Html5.WebForms.IdentifierType.TypeReportSource
clientReportSource.Identifier = "report2.trdp"
reportViewer1.ReportSource = clientReportSource
I do not know how to connect the dataset I imported to the report source.
-------------------
Fix my source Thanks ^^;
-------------------
What I want is simple
1. Create the dataset I want.
2. Draw a report that has a field in the dataset.
3. Display it.
I finished 1 GetData() , I finished 2. ( "report2.trdp" )
Now you need to concatenate and display the data as in # 3.
But I did not solve it.