使用格式化将数据导出为Excel,Word和PDF

时间:2012-11-26 07:26:17

标签: asp.net

我想导出DataTable或DataSet的数据,格式化为页眉页脚颜色,字体大小,Word中的行颜色,Excel和PDF格式。有可能吗?

如果是,那怎么样?请跟我说 我的代码如下。

public void ExportToExcel(DataTable dt)
{   
        con.Open();
        string sql = "select *from test";
        cmd = new SqlCommand(sql, con);
        dt = new DataTable();
        da = new SqlDataAdapter(cmd);
        da.Fill(dt);
        GridView1.DataSource = dt;
        GridView1.DataBind();
        cmd.Dispose();

        string filename = "DownloadTest.xls";
        System.IO.StringWriter tw = new System.IO.StringWriter();
        System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
        DataGrid dgGrid = new DataGrid();
        dgGrid.DataSource = dt;
        dgGrid.DataBind();
        DataSet ds = new DataSet();
        ds = dt.Clone;

        dgGrid.RenderControl(hw);

        Response.ContentType = "application/vnd.ms-excel";
        Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
        this.EnableViewState = false;
        Response.Write(tw.ToString());
        Response.End();


        con.Close();
}

1 个答案:

答案 0 :(得分:0)

for pdf: -

我认为你应该使用'itextSharp'。您可以浏览此链接
http://www.codeproject.com/Articles/81118/ITextSharp-Helper-Class
你可以从这里下载它(.dll)
http://sourceforge.net/projects/itextsharp/

对于excel和word,您可以使用gridview将其导出为ex​​cel,并使用颜色和字体。
对于excel,您可以查看link