我想在iframe控件中显示Pdf文件。我在下面添加了我的代码。
in asp page,
<iframe width=500 height=500 runat="server" id="myPDF" src="pdf_003.pdf"></iframe>
in page_load
myPDF.Attributes.Add("src", "pdf_003.pdf");
当我运行项目时,pdf文件在iframe内部不可见。相反,它显示了保存为磁盘的保存对话框或在pdf阅读器中打开。
它在Internet Explorer中正确显示,但没有任何其他浏览器...
如何在所有其他浏览器中查看iframe控件中的pdf文件?
请指导我解决这个问题?