1

以下は私のコードです:

 public class ActionDownloadAttribute : ActionFilterAttribute 
 {
       public override void OnResultExecuted(ResultExecutedContext filterContext)
       {
             filterContext.HttpContext.Response.AddHeader("content-disposition", "attachment; filename=" + "Report.pdf");
             base.OnResultExecuted(filterContext);
       }
 }


[ActionDownload]
 public ActionResult GeneratePdf()
 {
       List<Comment> comments = null;
        using (var db = new CandidateEntities())
        {
            comments = db.Comments.ToList();
        }
        return new PdfActionResult("GeneratePdf", comments);
 }

上記のコードはダウンロード用のPDFファイルを提供しますが、ダウンロードする前に特定のパスまたはBlobに(自動的に)保存したいと思います。

誰でも同じように私を助けることができますか?

4

2 に答える 2