8

現在、サーバーからファイルをダウンロードするために HttpResponse を使用しています。Excel/Word ファイルをダウンロードするために既にいくつかの関数を使用していますが、単純なテキスト ファイル (.txt) をダウンロードするのに問題があります。

テキスト ファイルでは、基本的に TextBox の内容をファイルにダンプし、HttpResponse を使用してファイルをダウンロードしてから、一時テキスト ファイルを削除しようとしています。

Excel/Word ドキュメントで機能するコードの例を次に示します。

protected void linkInstructions_Click(object sender, EventArgs e)
{
    String FileName = "BulkAdd_Instructions.doc";
    String FilePath = Server.MapPath("~/TempFiles/BulkAdd_Instructions.doc");
    System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
    response.ClearContent();
    response.Clear();
    response.ContentType = "application/x-unknown";
    response.AddHeader("Content-Disposition", "attachment; filename=" + FileName + ";");
    response.TransmitFile(FilePath);
    response.Flush();
    response.End();  
}

そして、ここに動作しないコードのチャンクがあります。
エラーをスローせずにコードが実行されることに注意してください。ファイルが作成され、削除されますが、ユーザーにダンプされることはありません。

protected void saveLog(object sender, EventArgs e)
{ 
    string date = DateTime.Now.ToString("MM_dd_yyyy_hhmm");     //  Get Date/Time
    string fileName = "BulkLog_"+ date + ".txt";                //  Stitch File Name + Date/Time
    string logText = errorLog.Text;                             //  Get Text from TextBox
    string halfPath = "~/TempFiles/" + fileName;                //  Add File Name to Path
    string mappedPath = Server.MapPath(halfPath);               //  Create Full Path

    File.WriteAllText(mappedPath, logText);                     //  Write All Text to File

    System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
    response.ClearContent();
    response.Clear();
    response.ContentType = "text/plain";
    response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);
    response.TransmitFile(mappedPath);                //  Transmit File
    response.Flush();

    System.IO.File.Delete(mappedPath);                //  Delete Temporary Log
    response.End();
}
4

6 に答える 6

11

送信する前にファイルを削除しているためです。

MSDNから-HttpResponse.Endメソッド

現在バッファリングされているすべての出力をクライアントに送信し、ページの実行を停止して、EndRequestイベントを発生させます。

System.IO.File.Delete(mappedPath);を配置してみてください。response.End();の後の行 ちょうどその時の私のテストでは、それは機能しているようでした。

また、ファイルが最初に存在するかどうかを確認し、ファイルを表示できないかどうかを確認することをお勧めします。そこに存在し、null参照例外を必要とせず、Content-Lengthを設定します。

編集:これは私がしばらく前に仕事でプロジェクトで使用したコードです、少しあなたを助けるかもしれません。

// Get the physical Path of the file
string filepath = System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath + folder + filename;

// Create New instance of FileInfo class to get the properties of the file being downloaded
FileInfo file = new FileInfo(filepath);

// Checking if file exists
if (file.Exists)
{                            
    // Clear the content of the response
    Response.ClearContent();

    // LINE1: Add the file name and attachment, which will force the open/cance/save dialog to show, to the header
    Response.AddHeader("Content-Disposition", String.Format("attachment; filename={0}", file.Name));

    // Add the file size into the response header
    Response.AddHeader("Content-Length", file.Length.ToString());

    // Set the ContentType
    Response.ContentType = ReturnFiletype(file.Extension.ToLower());

    // Write the file into the response (TransmitFile is for ASP.NET 2.0. In ASP.NET 1.1 you have to use WriteFile instead)
    Response.TransmitFile(file.FullName);

    // End the response
    Response.End();

    //send statistics to the class
}

これが私が使用したFiletypeメソッドです

//return the filetype to tell the browser. 
//defaults to "application/octet-stream" if it cant find a match, as this works for all file types.
public static string ReturnFiletype(string fileExtension)
{
    switch (fileExtension)
    {
        case ".htm":
        case ".html":
        case ".log":
            return "text/HTML";
        case ".txt":
            return "text/plain";
        case ".doc":
            return "application/ms-word";
        case ".tiff":
        case ".tif":
            return "image/tiff";
        case ".asf":
            return "video/x-ms-asf";
        case ".avi":
            return "video/avi";
        case ".zip":
            return "application/zip";
        case ".xls":
        case ".csv":
            return "application/vnd.ms-excel";
        case ".gif":
            return "image/gif";
        case ".jpg":
        case "jpeg":
            return "image/jpeg";
        case ".bmp":
            return "image/bmp";
        case ".wav":
            return "audio/wav";
        case ".mp3":
            return "audio/mpeg3";
        case ".mpg":
        case "mpeg":
            return "video/mpeg";
        case ".rtf":
            return "application/rtf";
        case ".asp":
            return "text/asp";
        case ".pdf":
            return "application/pdf";
        case ".fdf":
            return "application/vnd.fdf";
        case ".ppt":
            return "application/mspowerpoint";
        case ".dwg":
            return "image/vnd.dwg";
        case ".msg":
            return "application/msoutlook";
        case ".xml":
        case ".sdxl":
            return "application/xml";
        case ".xdp":
            return "application/vnd.adobe.xdp+xml";
        default:
            return "application/octet-stream";
    }
}
于 2011-03-30T01:02:04.583 に答える
2

あなたの問題が何であったかについてフォローアップしていただきありがとうございます。何も起こらなかったにもかかわらず、エラー コードがスローされなかった理由を突き止めるのに何時間も費やしました。それは私のAJAX UpdatePanelが不思議なことにひそかに邪魔をしていたことが判明しました。

于 2011-04-07T19:28:05.837 に答える
1

この問題を解決しました。Responseオブジェクトは、サーバー上で生成された Excel ファイルをダウンロードするために、完全ポストバックを必要とします。だから.. UpdatePanelタグの中で、私はこれを変更しました...

<asp:AsyncPostBackTrigger ControlID="btnExport" EventName="Click" />

...これに問題を解決するには:

<asp:PostBackTrigger ControlID="btnExport"/>
于 2021-02-17T16:22:35.740 に答える
-6

私は自分で問題を解決することになりました。私のボタンが正しくポストバックできないのはAjaxの問題であることがわかりました。これにより、TransmitFile が起動されなくなりました。

助けてくれてありがとう!

于 2011-03-30T21:45:15.980 に答える