Medo Medo
Medo Medo

Reputation: 1018

view pdf page in asp.net page

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

Answers (2)

benni_mac_b
benni_mac_b

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

kkaya
kkaya

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

Related Questions