【问题标题】:asp.net download excel file in IE6asp.net 在 IE6 中下载 excel 文件
【发布时间】:2010-11-12 17:39:45
【问题描述】:

我一直在尝试让用户通过下载提示下载 Excel 文件。在 Firefox 和 IE7 + 中一切正常,但在 IE6 中不起作用。在IE6中,显示aspx页面的名称并下载一个空白页面。

这是我的代码 响应。清除(); 字符串文件名 = DateTime.Now.ToShortDateString() + "Leads.csv"; Response.Clear();

Response.AppendHeader("content-disposition", "attachment;filename=" + fileName); Response.ContentType = "应用程序/vnd.ms-excel"; if (Session["LeadsSearchResults"] != null) { WriteLeads(Response.Output, GetTasks((IList)Session["LeadsSearchResults"])); } Response.Flush(); 响应.End();

【问题讨论】:

  • 我正在动态生成excel/csv文件

标签: excel internet-explorer-6 download content-disposition


【解决方案1】:

您需要从文件名中删除斜杠。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-10-16
    • 2017-03-23
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多