如何在aspx页面中显示pdf?

Red*_*wan 11 pdf asp.net asp.net-mvc asp.net-mvc-3

net mvc 3.我想将pdf文件显示为aspx页面的一部分以供预览.在此输入图像描述

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

ric*_*ott 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>
Run Code Online (Sandbox Code Playgroud)

你可以尝试:

<embed src="http://yoursite.com/the.pdf" width="500" height="375">
Run Code Online (Sandbox Code Playgroud)

在HTML中嵌入PDF的最佳方法