Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,

I created some Crystal reports, which are of min 10 pages.

When i try to go from 1st page to next... it ll go just to 2nd page and then to last page.
its not going further after 2. if i mention page no it ll go to particular page.
i cant get where the problem exists.

i want my report all the pages continuously.

I am using basic visual studio 2008.

Thanks in advance.
Posted
Updated 3-Apr-16 23:24pm
Comments
thatraja 12-Nov-13 5:18am    
What happens when you click pages(after 2nd)? any error?
cherry215 12-Nov-13 5:20am    
nope.... no error at all. it ll just pause there or goes to last page
cherry215 12-Nov-13 5:46am    
i havent done any modifications now... but thats not happening...
i tried all scenarios but i cant see that error again.
Confused!!
thatraja 12-Nov-13 7:05am    
Very very rarely it happens. Anyway you have answers here, try it when you face the same issue.

2 years ago I have posted an answer here, check it out
Problem in Crystal Report toolbar ASP.Net[^]

If you want polished content, check these
Efficient Crystal Reports.NET databinding.[^]
Crystal Report Viewer’s page navigation buttons problem[^]

If your code is in Page_Init() & still getting the same issue, check this
Crystal Reports ASP.Net Not Move on Next Page[^]
 
Share this answer
 
I had the same issue but resolved it by enclosing the code loading the crystal report in if not(ispostback) block.
like this:
VB
If Not (IsPostBack) Then

  ConfigureCrystalReports()

 End If

where ConfigureCrystalReports() is my predefined method that defines my report document.

Hope this helps
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900