4

我有一本 pdf 书,我想在 asp.net 中的浏览器上的 pdf 查看器中打开此 pdf,例如“ http://wdn.ipublishcentral.net/informatics/viewinside/40590590200230 ”,你能推荐我吗?

4

1 回答 1

2

<iframe>标签用于此。

尝试使用此标签,如下所示:

 <iframe src="anyfilename.PDF" width="810px" height="700px" scrolling="no" frameborder="0">
</iframe>

如果您使用telerik控件,就像您提供的链接一样,请使用以下>>

<radPdf:PdfWebControl id="PdfWebControl1" runat="server" height="600px" width="100%" />

和代码隐藏>>

if (!IsPostBack) 
        {
            //Get PDF as byte array from file (or database, browser upload, remote storage, etc)
            byte[] pdfData = System.IO.File.ReadAllBytes(@"C:\demo.pdf");

            //Load PDF byte array into RAD PDF
            this.PdfWebControl1.CreateDocument("Document Name", pdfData);
        }

希望它有帮助!!!

于 2013-03-26T10:19:18.530 回答