0

我正在使用以下方法下载文件。在iframe内单击按钮。它在除 IE 之外的所有浏览器中都可以正常工作。有人可以建议我一个解决方案

private void DownloadToBrowser(string filePath)
    {
        try
        {
            FileInfo file = new FileInfo(filePath);
            Context.Response.Clear();

            Context.Response.ClearHeaders();

            Context.Response.ClearContent();

            Context.Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);

            Context.Response.AddHeader("Content-Length", file.Length.ToString());

            Context.Response.ContentType = "text/plain";

            Context.Response.Flush();

            Context.Response.TransmitFile(file.FullName);

            Context.Response.End();
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }
4

4 回答 4

1

我建议删除该Context.Response.Flush();行...我认为没有必要(因为它将作为Context.Response.End();行的一部分发生),并且可能会弄乱浏览器在下一行接收文件的方式。

另外,您传输的文件肯定是纯文本文件吗?如果没有,您需要提供不同的Context.Response.ContentType();

于 2012-06-14T09:54:12.367 回答
0

了解我正在使用数据集,下载为 Excel 文件

使用命名空间:

        using System.IO;
        using System.Data;   

        DataSet ds = new DataSet("Table");
        ds.Tables.Add("Table1");
        ds.Tables[0].Columns.Add("Field1");
        ds.Tables[0].Columns.Add("Field2");
        ds.Tables[0].Columns.Add("Field3");
        ds.Tables[0].Rows.Add();
        ds.Tables[0].Rows[0][0] = "1";
        ds.Tables[0].Rows[0][1] = "2";
        ds.Tables[0].Rows[0][2] = "3";


        HttpResponse response = HttpContext.Current.Response;

        // first let's clean up the response.object
        response.Clear();
        response.Charset = "";

        // set the response mime type for excel
        response.ContentType = "application/vnd.ms-excel";
        response.AddHeader("Content-Disposition", "attachment;filename=sample.xls");

        // create a string writer
        using (StringWriter sw = new StringWriter())
        {
            using (HtmlTextWriter htw = new HtmlTextWriter(sw))
            {
                // instantiate a datagrid
                DataGrid dg = new DataGrid();
                dg.DataSource = ds.Tables[0];
                dg.DataBind();
                dg.RenderControl(htw);
                response.Write(sw.ToString());
                response.End();
            }
        }

下载为 Word 文件

代替

        response.ContentType = "application/msword";
        response.AddHeader("Content-Disposition", "attachment;filename=sample.doc");
于 2012-06-14T09:46:11.247 回答
0

您很可能错过了 IE 所需的一些 HTTP 响应标头。

微软网站上有KB

还可以查看关于 SO 的类似问题:PHP script to download file not working in IE

于 2012-06-14T05:23:10.123 回答
0

你可以尝试这样的事情:

Context.Response.Buffer = true;
Context.Response.ContentType = "application/pdf";
Context.Response.AddHeader("Content-Disposition", "attachment;filename=" + FileName );
Context.Response.OutputStream.Write(dataBytes ,0,FileContentLength);         

也尝试将此添加到您的 aspx 页面:

<%@ Page aspCompat="True" other attributes %>
于 2012-06-14T05:28:47.407 回答