Red Swan
Red Swan

Reputation: 15545

how to show pdf inside the aspx page?

net mvc 3. I want to display the pdf file as a part of aspx page for preview purpose.enter image description here

i don't want to use IFrame control. can we do this ?

Upvotes: 12

Views: 40581

Answers (1)

rick schott
rick schott

Reputation: 20617

I know you said no frames, but Google PDF viewer seems to be the most popular:

<iframe src="http://docs.google.com/gview?url=http://example.com/mypdf.pdf&embedded=true"
  style="width:718px; height:700px;" frameborder="0"></iframe>

And you can try:

<embed src="http://yoursite.com/the.pdf" width="500" height="375">

Best Way to Embed PDF in HTML

Upvotes: 15

Related Questions