我要生成一個PDF文檔,然後下載無法下載PDF文檔
//this is file name
var fileName = name + "_" + DateTime.Now.ToShortDateString() + ".pdf";
//here I generate my pdf document
string fullpath= GeneratePDF();
bool existFile= File.Exists(fullpath);
//here I check if this document exists
if (existFile)
{
HttpContext.Current.Response.ContentType = "Application/pdf";
HttpContext.Current.Response.AppendHeader("Content-Disposition",
"attachment; filename=" + fileName);
HttpContext.Current.Response.TransmitFile(fullpath);
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();
}
通過所有鱈魚去後,成功創建文檔,但下載不起作用
'不work'是沒有問題的說明中提出了互聯網上的問題,當一個軟件開發者應該給論壇。這是標準用戶最常使用的一個問題描述,它們不理解或關心計算機的工作方式。 –