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.

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


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

链接地址: http://www.djcxy.com/p/36470.html

上一篇: 锚内的div

下一篇: 如何在aspx页面显示pdf?