1

グリッドビューにダウンロードリンクがあり、それをクリックすると、保存ダイアログポップアップが表示され、Excelの塗りつぶしがダウンロードされます。

しかし、「コードが最適化されているか、ネイティブフレームが呼び出しスタックの最上位にあるため、式を評価できません」というエラーが発生します。にResponse.End()

コード:

protected void grdFiles_RowCommand(object sender, GridViewCommandEventArgs e)
    {

        try
        {
            if (e.CommandName == "download")
            {
                string _FileName = Convert.ToString(e.CommandArgument);
                //Response.Clear();
                //Response.AppendHeader("Content-Disposition", "attachment; filename=" + _FileName);
                //Response.ContentType = "application//octet-stream";
                //Response.TransmitFile(Server.MapPath("~/Files/" + _FileName));
                //Response.End();

                // Get the physical Path of the file(test.doc)
                string filepath = Server.MapPath("test.doc");

                // Create New instance of FileInfo class to get the properties of the file being downloaded
                FileInfo file = new FileInfo(Server.MapPath("~/Files/" + _FileName));

                // 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", "attachment; filename=" + file.Name);

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

                    // Set the ContentType
                    Response.ContentType = "application/vnd.ms-excel";

                    // 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();
                }
            }
        }
        catch (Exception ex)
        {

        }
    }
4

4 に答える 4

2

このエラーの別の原因として考えられるのは、グリッドが更新パネルにあるためでしょうか?

このような場合は、グリッド コントロールをポスト バック トリガーとして追加することをお勧めします。

<asp:UpdatePanel runat="server" ID="UpdatePanel1">
    <Triggers>
        <asp:PostBackTrigger ControlID="grdFiles" />
    </Triggers>
    <ContentTemplate>
        <gridview ID="grdFiles" runat="server">
        your grid view content
        </gridview>
    </ContentTemplate>
</asp:UpdatePanel>

グリッド全体をポスト バック トリガーとして配置するのはやり過ぎかもしれませんが (ページングでポスト バックが発生する可能性があります)、ダウンロード リンクをテンプレート列として作成し、グリッド内のコントロールをポスト バック トリガーとして設定してみてください。

代わりにエクスポートボタンをダウンロードボタンとして使用し、グリッドコマンドを使用して詳細を選択し、グリッド内の何かが選択されている場合にのみこのボタンを使用できるようにし、代わりにこのボタンにポストバックトリガーを配置するという同様の問題がありましたグリッド上に持っています。

于 2014-01-22T11:26:27.953 に答える
0

これはThreadAbortExceptionが原因です。この特定の例外を処理してみてください。

   try
   {
      if (file.Exists)
      {
         //do something
      }
      response.End();
   }
   catch (ThreadAbortException ex)
   {
       //Log trace info
   }
于 2012-11-26T12:15:44.897 に答える
0

「コードが最適化されているか、ネイティブ フレームがコール スタックの最上位にあるため、式を評価できません」に対処する便利な方法があります。問題。出力ウィンドウに書き込む必要があります。

System.Diagnostics を使用して追加します。

エラーが発生している行に Try/Catch を追加します

キャッチでこれらの行を追加します

try
{ ..}
catch(Exception ex)
{
    Debug.WriteLine(ex.Message);
    Debug.WriteLine(ex.StackTrace);
    Debug.WriteLine(ex.InnerException.ToString());
}

出力ウィンドウをデバッグして確認するだけです

それが役に立てば幸い。

于 2014-09-03T02:29:11.993 に答える
-1

ファイル パスを Web.Config ファイルに保存し、次のコードを試してください。

    string filename = "test.doc";
    string FilePath = ConfigurationManager.AppSettings.Get("SharedPath") + ConfigurationManager.AppSettings.Get("Path") + "\\\\" + filename;

    FileInfo file = new FileInfo(FilePath);
    if (file.Exists)
    {
        Response.AppendHeader("content-disposition",
        "attachment; filename=" + filename);
        Response.ContentType = "application/download";
        Response.WriteFile(FilePath);
        Response.End();
    }
于 2012-11-26T12:01:53.250 に答える