我正在使用 iTextSharp 为 ASP.Net (c#) 中的报告创建 PDF。Pdf 已成功创建并且可以在运行应用程序时打开,但是当 iam 托管在 IIS 中时,它无法在 PDF 中打开并给出错误:
“adobe reader 无法打开 pdf,因为它不是受支持的文件类型或文件已损坏”
我的代码如下:
Document pdfDoc = new Document();
pdfDoc.SetPageSize(PageSize.A4.Rotate());
string filepath = "Demo" + ".pdf";
string attachment = "attachment; filename=" + filepath;
Response.Charset = String.Empty;
Response.ClearContent();
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/PDF";
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
//Adding some paragraph in to the pdfdoc.
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();
我在等你的好主意