2013-03-26 153 views

回答

2

標籤用於此目的。

嘗試使用這種標籤像如下:

<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); 
     } 

希望它的幫助!

+0

這是毫無疑問的有用。但我想下面給出的鏈接「http://wdn.ipublishcentral.net/informatics/viewinside/40590590200230」 – 2013-03-26 10:39:10

+0

那是什麼鏈接?它顯示我什麼都沒有 – Freelancer 2013-03-26 10:40:21

+0

你會請檢查「http://www.nxtbook.com/nxtbooks/nxtbook_samples/ft_201110/#/6」 – 2013-03-26 10:42:27