Not sure what I am doing wrong but when I try to display a PDF with more than 5 pages, the first 5 pages work correctly but page 6-xx are always blank. I have tried many PDF's and all stop at page 5, everything else is blank. When I view the PDF is Adobe, I see all pages.
I am using Spire.PDFViewer 7.7.10
and Spire.PDF 8.7.2.1040
using it with c#
load code looks like
this.PdfDocumentViewer1.CacheInterval = 1000;
this.PdfDocumentViewer1.CacheTime = 12000;
this.PdfDocumentViewer1.CacheNumberImage = 1000;
this.PdfDocumentViewer1.ScrollInterval = 300;
this.PdfDocumentViewer1.ZoomFactor = 1f;
PdfDocument doc = new PdfDocument();
string val3 = @"c:\InetPub\Test.pdf";
doc.LoadFromFile(val3);
the viewer is
<cc1:PdfDocumentViewer ID="PdfDocumentViewer1" runat="server" Width="100%">
</cc1:PdfDocumentViewer>