-1
我想知道如何提示用戶下載pdf文件。如何將本地pdf文件返回到瀏覽器以保存或使用asp.net打開mvc
我有下面的代碼,但它沒有返回任何東西。
public ActionResult DownloadAssetClassGuide()
{
string folder = @"C:\NewFolder";
string file = "xyz.pdf";
string fullPath = Path.Combine(folder, file);
byte[] fileBytes = System.IO.File.ReadAllBytes(fullPath);
return File(fileBytes, "application/pdf", file);
}
我錯過了什麼?
你需要指定'內容Disposition'頭。欲瞭解更多信息,請參閱我標記爲重複的帖子。 – Dai
你如何將用戶發送到操作方法? –