Has anyone found the answer to why an SSRS report will periodically crash when paging up or down. The error is usually
Sys.WebForms. PageRequestManagerParseErrorException.
Etc
It is annoying enough that the Page Up/Page Down keys can't be used but it adds insult to injury when it crashes like this.
Thanks
Thanks for the info. The problem of course is users using the report actively, drilling down on records etc. This idle problem means users cannot use the system to assist with working within the system. If print out are always needed. Since some reports can be rather extensive and it gets to be a waste of paper.
Another pet peeve is the page count is never "real".
Leslie
This is a simplified description of what's happening. When you run a report with multiple pages, the report server sends you the first page and stores the data for the other report pages in its cache. When you click next page, your client is telling report server "send me the next page of the report you have cached with ID xxxxxxx". But if you take too long to go to the next page, the report server already timed-out the session and drops the cached information. That's the error you are getting.
I haven't been able to find a way to increase the time-out, so the only "solution" I found is to be sure you go through the pages before it times out, or export the report to PDF or other offline format.
Fernando
From: Leslie McKinley <bounce-lesliemckinley4321@tessituranetwork.com> Sent: 6/26/2016 3:44:10 PM