如何在aspx页面中显示pdf?

时间:2011-10-25 03:38:01

标签: asp.net asp.net-mvc asp.net-mvc-3 pdf

net mvc 3.我想将pdf文件显示为aspx页面的一部分以供预览。enter image description here

我不想使用IFrame控件。我们可以这样做吗?

1 个答案:

答案 0 :(得分:14)

我知道你说没有框架,但谷歌PDF查看器似乎是最受欢迎的:

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

你可以尝试:

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

Best Way to Embed PDF in HTML