I have a basic proof-of-concept ASP.NET Web project set up as recommended with separate class library for reports.
On my web page, I am rendering the report with the following code:
The problem I am having is with the Navigation Group in the Web Viewer. All the controls (first, previous, next and last) are all disabled and the text box shows page "0" of 2.
I tried three different combinations here including a DataSet, DataTable and DataView, with the same results.
What have I missed here?
On my web page, I am rendering the report with the following code:
System.Data.DataTable dt =
new
MyDataClass.GetReport();
ReportClassLibrary.Report1 r1 =
new
ReportClassLibrary.Report1();
r1.DataSource = dt;
ReportViewer1.Report = r1;
The problem I am having is with the Navigation Group in the Web Viewer. All the controls (first, previous, next and last) are all disabled and the text box shows page "0" of 2.
I tried three different combinations here including a DataSet, DataTable and DataView, with the same results.
What have I missed here?