2013-07-09 100 views
0

所以我在codeproject http://www.codeproject.com/Articles/20640/Creating-PDF-Documents-in-ASP-NET中看到了本教程。我用iTextSharp的在我的web項目無法將文檔轉換爲iTextSharp.text.Document

Dim doc As Document = New Document 
    PdfWriter.GetInstance(doc, New FileStream("C:\Users\PC\Desktop" + _ 
           "\1.pdf", FileMode.Create)) 

      doc.Open() 
      doc.Add(New Paragraph("Hello World")) 
      doc.Close() 
      Response.Redirect("~/1.pdf") 

這個語法我得到的錯誤是「myProjectName.Document」不能轉換爲「iTextSharp.text.Document'and開放,增加,接近是不是成員」 myProjectName.Document'

我目前的框架是3.5。我已經下載了它是框架2.0的示例項目,但仍然可以在我將其更改爲3.5時運行,

任何解決方法與我的問題?

回答

1

看起來你Document是由別的命名空間來,嘗試指定命名空間明確:

dim doc as iTextSharp.text.Document = new iTextSharp.text.Document() 'may need parameters to constructor 
+0

非常感謝就像一個魅力 –