如何指定接收文件的路径文件

时间:2014-12-29 08:53:57

标签: c# asp.net pdf-generation wkhtmltopdf pechkin

我正在使用pechkin.dll将网页转换为PDF文件。我尝试使用" TransmitFile"设置路径,但它不起作用。

这是我的代码,现在该文件仍存储在C:\ User \ Username \ download。

如何在项目中指定文件("〜/ convertFile")?

Response.Clear();
Response.ClearContent();
Response.ClearHeaders();

Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition", string.Format("attachment;filename=test.pdf; size={0}", pdf.Length));

Response.BinaryWrite(pdf);
Response.Flush();
Response.End();

0 个答案:

没有答案