我正在使用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();