In Asp.net, the problem with the prev/next page I have I am told is a CR bug. If I am on page 1, and hit next page I can go to page 2, but then next page will not take me to page 3.. Also If I get to page 10 through the Navigation Tree, or entering the page # in the GoTo box, then hit Next page, I go back to page 2..
I tried making a button for Prev/next page with the code of
CrystalReportViewer1.ShowNextPage();
or
CrystalReportViewer1.ShowPreviousPage();
But.. That is definatly using the buggy code. I still get from page 1 to page 2, then no more.
Removed the buttons using
CrystalReportViewer1.HasPageNavigationButtons =
false;
Which keeps my program from having the bugs, but does not make it user friendly. Has anyone figured out a do-it-yourself, code around?