I have a web application that is very simple. It's just a web form (aspx) with a CrystalReportViewer control on it.
My code loads up a report file: rpt.Load(Server.MapPath(".......rpt"));
Adds the report to the session: Session.Add("report", rpt);
And uses the report in the session for the viewer CrystalReportViewer.ReportSource = Session["report"];
This has been working just fine for the past couple of years. But now the pager (Go to Previous Page, Go to Next Page) on the viewer will not advance past page 2 of a 503 page report (in one example) nor will it advance past page 2 of a 724 page report (in another example).
If I Go to Last Page and then attempt to use the "Go to Previous Page" button of the pager, it jumps to the first page.
If I enter a specific page number, let's say....300. And then choose to "Go to NEXT Page", it goes to Page 2 (so from page 300 to page 2 on a select NEXT page). If I enter page 300 and then choose to "Go to PREVIOUS Page", it goes to Page 1 (so from page 300 to page 1 on a select PREVIOUS page).
I discovered this right after applying SP 10. Then discovered that SP 11 had been released and applied it, with no change.
Also, I had to put my Internet Explorer browser into compatibility mode before the control would even render. I'm wondering if SAP will have a fix for this.