Click here to Skip to main content
15,949,741 members
Please Sign up or sign in to vote.
3.86/5 (3 votes)
See more:
H,
Is there any way to open PDF in Browser without using Acrobat object.
I have tried below link but its not working

ASP.NET PDF Viewer User Control Without Acrobat Reader Installed on Client or Server[^]

so please help me.
If you know any Free JQuery plugin or HTML5 way to view PDF Doc in web page please help.
Posted

You can use iTextSharp for that. :)

I have written an Article about that.Please check that for more info.

How to Create Asp.Net MVC 3 Report using iTextsharp?
 
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! An acrobat-free solution to display PDF on webpages.
 
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