1. ホーム
  2. asp.net

[解決済み] .ashxページの呼び出しによるファイルのダウンロード

2022-02-19 12:39:24

質問

マスターページのクライアントサイドスクリプト(Jquery)から、PDFファイルをダウンロードするコードを持つ.ashxページを要求しています。デバッグすると、"file download"コードの実行が見えますが、ファイルがダウンロードされません。

$.ajax({
    type: "POST",
    url: "FileDownload.ashx",
    dataType: "html",
    success: function (data) { }
} );

public class FileDownload : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        //context.Response.ContentType = "text/plain";
        //context.Response.Write("Hello World");

        string fileName = "BUSProjectCard.pdf";
        string filePath = context.Server.MapPath("~/Print/");
        context.Response.Clear();
        context.Response.ContentType = "application/pdf";
        context.Response.AddHeader("Content-Disposition", "attachment; filename="+fileName);
        context.Response.TransmitFile(filePath + fileName);
        context.Response.End();
    }

解決方法は?

ファイルはダウンロードされているのですが、javascript上では data パラメータで呼び出すことができます。

ハンドラを使っているので、ajaxは必要ありません。そして、javascriptを使って行う最も簡単なことは、これです。

window.location = "FileDownload.ashx?parametres=22";

または、次のようなシンプルなリンクで

  <a target="_blank" href="FileDownload.ashx?parametres=22" >download...</a>

ああ、そして、urlを介してパラメータを送信し、あなたはそのようにそれらを投稿することはできません。

も読むことができます。 サーバーからファイルをダウンロードする最も良い方法は何ですか?