将GridView导出到Excel 2007

时间:2014-10-24 12:05:58

标签: c# asp.net excel gridview

我想将gridview导出到excel 2007,我正在使用的代码可以使用mime类型application / vnd.ms-excel(excel 2003)导入到excel 2007但是我收到一条警告msg,上面写着“文件”你试图以不同的格式打开...“,对于是和不对clic,点击是打开文件,买我不能为客户提供这个消息。并使用mime类型为excel 2007( application / vnd.openxmlformats-officedocument.spreadsheetml.sheet)文件甚至没有打开“Excel无法打开文件,因为格式或扩展无效”。

这是我现在正在使用的代码:

using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.IO;
using System.Drawing;


namespace TesteFornecedores
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!this.IsPostBack)
            {
                this.BindGrid();
            }
        }

        private void BindGrid()
        {
            using (DataSet ds = new DataSet())
            {
                ds.ReadXml(Server.MapPath("~/Customers.xml"));
                GridView1.DataSource = ds;
                GridView1.DataBind();
            }
        }


        protected void OnPageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            GridView1.PageIndex = e.NewPageIndex;
            this.BindGrid();
        }




        protected void ExportToExcel(object sender, EventArgs e)
        {
            Response.Clear();
            Response.Buffer = true;
            Response.AddHeader("content-disposition", "attachment;  filename=ExcelList");
            Response.Charset = "";
            Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
            using (StringWriter sw = new StringWriter())
            {
                HtmlTextWriter hw = new HtmlTextWriter(sw);

                //To Export all pages
                GridView1.AllowPaging = false;
                this.BindGrid();

                GridView1.HeaderRow.BackColor = Color.White;
                foreach (TableCell cell in GridView1.HeaderRow.Cells)
                {
                    cell.BackColor = GridView1.HeaderStyle.BackColor;
                }
                foreach (GridViewRow row in GridView1.Rows)
                {
                    row.BackColor = Color.White;
                    foreach (TableCell cell in row.Cells)
                    {
                        if (row.RowIndex%2 == 0)
                        {
                            cell.BackColor = GridView1.AlternatingRowStyle.BackColor;
                        }
                        else
                        {
                            cell.BackColor = GridView1.RowStyle.BackColor;
                        }
                        cell.CssClass = "textmode";
                    }
                }

                GridView1.RenderControl(hw);

                //style to format numbers to string
                string style = @"<style> .textmode { } </style>";
                Response.Write(style);
                Response.Output.Write(sw.ToString());
                Response.Flush();
                Response.End();
            }
        }

        public override void VerifyRenderingInServerForm(Control control)
        {
            /* Verifies that the control is rendered */
        }
    }
}

有人知道一个可以帮助我在excel 2007中打开这个gridview的解决方案吗?

感谢。

2 个答案:

答案 0 :(得分:0)

您没有导出为实际的Excel格式。您正在创建HTML文件,并且由于您提供了Excel知道如何处理的MIME类型,Excel会尝试打开它。 Excel确实知道如何阅读基本的HTML文件,但很难控制格式,你会收到警告信息。

相反,您需要做的是生成.xlsx文件是使用可以为您生成它们的库。例如EPPlusOpen Office XML SDK。请注意,您需要避免使用基于Excel Interop的解决方案,因为Microsoft在服务器端不支持这些解决方案,它们将难以调试,并且它们将导致令人头疼。

顺便说一句,不要将其视为“导出GridView”。这是一个糟糕的方法。 GridView是用于以HTML格式显示数据的UI元素。可以把它想象成“如何导出这些数据?”在您的情况下,将其视为导出DataSet或XML类型数据。

答案 1 :(得分:0)

        Response.Clear();
        Response.ContentType = "application/excel";
        Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);
        Response.BinaryWrite(objectData);//objectData is binary data
        Response.End();

您的回答应该是这样的。我非常确定您的代码无效,因为您没有向Response提供有效的Excel文件,请阅读OleDbConnection

使用Grid的DataSource中的DataSet。在构建OleDbConnection

之后
OleDbConnection conn = new OleDbConnection();


string connectString = String.Format(
                    "Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 12.0 Xml;HDR={1};'",
                    fileName, "YES");

                conn.ConnectionString = connectString;
                conn.Open();

 OleDbCommand comm = new OleDbCommand();
 comm.CommandText = string.Format("CREATE TABLE [{0}] ", "TableName");

DataSet中的列添加到comm.CommanText。构建dataSet列结构的副本。之后:

comm.Connection = conn;
comm.ExecuteNonQuery();

现在您使用与数据集相同的列创建表。

现在你应该更新内容

            OleDbDataAdapter ad = new OleDbDataAdapter(
                string.Format("SELECT * FROM [{0}]", "TableName"), conn);
            OleDbCommandBuilder builder = new OleDbCommandBuilder(ad);
            builder.QuotePrefix = "[";
            builder.QuoteSuffix = "]";

             // Saves the data set
            ad.Update(DataSetFromTheGrid);

现在你用数据填充了表格。                //注意fileName与连接字符串中的fileName相同!                FileStream fs = new FileStream(fileName,FileMode.Open,FileAccess.Read);

            BinaryReader reader = new BinaryReader(fs);
            excelBytes = reader.ReadBytes((int)fs.Length);
            //after the returned bytes it will be good to delete the file !

将此字节返回给响应,并且您有excel文件。