Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading PDF page by page

Status
Not open for further replies.

manishw

Programmer
Jun 15, 2005
16
US

Hello.. I am using Crystal Reports 10 and executing the reports from an asp code. I am displaying the reports in the pdf format.
I am facing problems when displaying very large pdf reports running into 2000 pages.
I get the error, "Max processing time or Max records limit reached".

I want to know if it is possible to load the pdf page by page i.e. let a few pages of the pdf report be displayed and while we scroll down the other pages can be loaded.

Thanks,
Manish
 
Blimey a 2000 page pdf, that must be a fun read!

In the asp page you could insert the following adjusting the number accordingly;

Server.ScriptTimeOut = 900

The start of my ASP page in full looks like this;

<!--#include File="../includes/UserAccount.inc"-->
<!--#include File="../includes/LogUsage.asp"-->
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>

<%
Server.ScriptTimeOut = 900
ReportName = "AdTraderCrossSell.rpt"

Cheers

Marc
 
Thanks for the response Marc. But my problem was not of the page timing out but the crystal enterprise restricting the number of records.
I found out later that there is a setting in Crystal Enterprise wherein you can modify the "maximum records" or any number or set it to "Unlimited".

Thanks,
Manish
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top