您好,我正在尝试导出网格数据到excel,但它在IE8中不起作用。我正在使用一个包含两个按钮‘确定’和‘关闭’的Ajax Modal PopUp对话框。单击Ok,我想下载excel file.it在Mozilla中运行良好,但在IE中不起作用。我使用以下代码。请建议我怎么做?另外,当我第一次打开文件时,它在打开文件之前显示警告,该如何处理?
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();
发布于 2013-07-31 12:23:33
您会收到警告,因为从技术上讲,这不是导出到excel,但您发送了一个带有错误标题的html,以诱使浏览器使用excel打开此内容。
最好使用本地的Excel库,并在服务器端生成真正的Excel文件,例如EPPlus,它是开源的,不需要服务器端的excel。
下面是从DataTable生成excel文件的ashx处理程序示例
https://stackoverflow.com/questions/17969913
复制相似问题