Reputation: 1018
am doing paging to read pdf file page by page and open the page in browser I tried to use itextsharp and itext but it return the page as text is there any way to read the pdf file page and view it in broser exactly as in pdf with formating
Upvotes: 2
Views: 1621
Reputation: 8877
You could you use the Embeddable Google Document Viewer
<iframe src="http://docs.google.com/gview?url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe>
Upvotes: 2
Reputation: 15
Use an iframe and point its src to the PDF. It will still invoke the client's PDF reader, but will be embedded in your page.
Upvotes: 1