首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >从无法在Ajax模型PopUp上工作的网格导出Excel

从无法在Ajax模型PopUp上工作的网格导出Excel
EN

Stack Overflow用户
提问于 2013-07-31 12:05:44
回答 1查看 762关注 0票数 0

您好,我正在尝试导出网格数据到excel,但它在IE8中不起作用。我正在使用一个包含两个按钮‘确定’和‘关闭’的Ajax Modal PopUp对话框。单击Ok,我想下载excel file.it在Mozilla中运行良好,但在IE中不起作用。我使用以下代码。请建议我怎么做?另外,当我第一次打开文件时,它在打开文件之前显示警告,该如何处理?

代码语言:javascript
运行
AI代码解释
复制
  Response.Clear();
    Response.Buffer = true;

    string filename = "Checkout";
     Response.Charset = "";
    Response.ContentType = "application/vnd.ms-excel";
    Response.AddHeader("content-disposition", "attachment; filename=" + filename + ".adt");

    Response.Write("<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">");
    Response.Write("<head>");
    Response.Write("<META http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">");
    Response.Write("<!--[if gte mso 9]><xml>");
    Response.Write("<x:ExcelWorkbook>");
    Response.Write("<x:ExcelWorksheets>");
    Response.Write("<x:ExcelWorksheet>");
    Response.Write("<x:Name>Sheet1</x:Name>");
    Response.Write("<x:WorksheetOptions>");
    Response.Write("<x:Print>");
    Response.Write("<x:ValidPrinterInfo/>");
    Response.Write("</x:Print>");
    Response.Write("</x:WorksheetOptions>");
    Response.Write("</x:ExcelWorksheet>");
    Response.Write("</x:ExcelWorksheets>");
    Response.Write("</x:ExcelWorkbook>");
    Response.Write("</xml>");
    Response.Write("<![endif]--> ");
    Response.Write("</head>");

    StringWriter sw = new StringWriter();
    HtmlTextWriter hw = new HtmlTextWriter(sw);
    GridView gv = new GridView();
    gv.AutoGenerateColumns = true;
    gv.DataSource = dt;
    gv.DataBind();
    gv.RenderControl(hw);

    Response.Output.Write(sw.ToString());
    Response.Flush();
    Response.End();
EN

回答 1

Stack Overflow用户

发布于 2013-07-31 12:23:33

您会收到警告,因为从技术上讲,这不是导出到excel,但您发送了一个带有错误标题的html,以诱使浏览器使用excel打开此内容。

最好使用本地的Excel库,并在服务器端生成真正的Excel文件,例如EPPlus,它是开源的,不需要服务器端的excel。

下面是从DataTable生成excel文件的ashx处理程序示例

https://stackoverflow.com/a/9569827/351383

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/17969913

复制
相关文章

相似问题

领券
社区富文本编辑器全新改版!诚邀体验~
全新交互,全新视觉,新增快捷键、悬浮工具栏、高亮块等功能并同时优化现有功能,全面提升创作效率和体验
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文