Click here to Skip to main content
15,896,912 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want PDF viewer on my web page which could not download on client site. I want to as

http://www.scribd.com/doc/206731980/Microsoft-NET-Interview-Questions-MS-NET-Certification-Review

this type of PDF viewer on my web page in asp.net. so please help me and provide good stuff to implement it or provide code.

Thank you
Posted

You can use Flex Paper. Download it from here:

http://flexpaper.devaldi.com/[^]


Description of Flex Paper - Use our desktop publisher software to create interactive page flip publications. Add video, links and images and reach all your clients without giving away control over your publications.
 
Share this answer
 
Try Google Doc Viewer. Just embed an iframe in your page pointing to Google Doc Viewer and specifying the PDF file you want to display. This is the code you should add:

HTML
<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>


Then you just need to set up your own document file to the "url" query string param and that's it!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900