在pd.net中设置pdf适合iframe中的大小

时间:2015-07-21 09:00:08

标签: asp.net pdf iframe

我想在iframe中显示pdf,pdf正在显示但是尺寸很小。我的意思是我每次都必须点击adobe chrome工具栏的尺寸选项。

以下是我正在使用的代码

<iframe src='/Abc/drawings/ab-1600.pdf' height='600px' width='100%'></iframe>

我甚至尝试过高度100%但没有成功

<iframe src='/Abc/drawings/ab-1600.pdf' height='100%' width='100%'></iframe>
编辑:刚刚找到解决方案,未来几年可能会或可能不会奏效 How to specify parameters to google chrome adobe pdf viewer?

1 个答案:

答案 0 :(得分:0)

你可以做到

<iframe src="/Abc/drawings/ab-1600.pdf" style="position: absolute; height: 100%; width: 100%;"></iframe>