找不到路径的一部分

时间:2018-06-21 15:29:20

标签: c# asp.net itext

我有pdf文件,当我单击按钮export pdf时,出现此错误。 仅当我在IIS 7上部署应用程序时才会出现此错误,当我在IIS Express上工作时,一切都很好(我可以导出pdf文件,将其打开并保存在我的PC上)。

这是代码:

DataTable dtbl = MakeDataTable();
ExportDataTableToPdf(dtbl, Server.MapPath("~/Downloads/PdfPaiement/PaiementPdf.pdf"), "");

// Ouvrir fichier Pdf 

Response.ContentType = "application/pdf";

Response.AppendHeader("Content-Disposition", "attachment; filename= 
PaiementPdf.pdf"); // Fournir le nom du fichier de paiement   
Response.TransmitFile(Server.MapPath(@"~/Downloads/PdfPaiement/PaiementPdf.pdf")); // acceder au fichier pdf

Response.End();    // terminer le response

Response.Flush();  // Initialiser le process

1 个答案:

答案 0 :(得分:1)

前一段时间我遇到了这个问题,我不得不授予文件夹INTERNET GUEST ACCOUNT下的Properties >> Security的权限。