dot*_*ner 3 c# asp.net asp.net-mvc asp.net-mvc-4 razorpdf
我正在使用RazorPDF,我想强制下载PDF而不是在浏览器选项卡中打开.我该怎么做呢?谢谢
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(string Id)
{
return RedirectToAction("Pdf");
}
public PdfResult Pdf()
{
// With no Model and default view name. Pdf is always the default view name
return new PdfResult();
}
Run Code Online (Sandbox Code Playgroud)
尝试content-disposition在返回PDFResult对象之前添加标题.
public PdfResult Pdf()
{
Response.AddHeader("content-disposition", "attachment; filename=YourSanitazedFileName.pdf");
// With no Model and default view name. Pdf is always the default view name
return new PdfResult();
}
Run Code Online (Sandbox Code Playgroud)