将数据从c#导出到word文档

时间:2012-06-06 12:12:40

标签: c# asp.net grid export-to-word

我在c#中有一个填充数据的网格。该网格中的一列包含按字母顺序排序的字母(后跟数字),如下所示:

A124
A256
A756
B463
B978
D322
etc.

我需要以word文档(.doc或.docx格式)导出此数据。 这是我导出一个signle网格所做的:

var dt = FuntionThatReturnsDatatables();

var gd = new GridView
        {
            DataSource = dt                     
        };

        gd.DataBind();

        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.Buffer = true;

        HttpContext.Current.Response.AddHeader("content-disposition", "attachment;
        filename=" + "List" + DateTime.Now.ToString("dd.MM.yyyy") + ".doc");

        HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
        HttpContext.Current.Response.ContentType = "application/ms-word";
        HttpContext.Current.Response.Charset = "UTF-8";

      HttpContext.Current.Response.BinaryWrite(System.Text.Encoding.UTF8.GetPreamble()); 

        var oStringWriter = new StringWriter();
        var oHtmlTextWriter = new HtmlTextWriter(oStringWriter);

        gd.RenderControl(oHtmlTextWriter);
        HttpContext.Current.Response.Output.Write(oStringWriter.ToString());
        HttpContext.Current.Response.Flush();
        HttpContext.Current.Response.End();

但现在我必须遵循这个逻辑:   - 对于网格中的每个字母,应创建一个带有标题的新表:

Table A:
 A124
 A256
 A756

enter image description here

enter image description here

  • 每个新表都应该从新页面开始,如下所示:

    表A:     A124,     A256,     A756,     //新页面

    表B: B463, B978, //新页面

    表D:表D: D322, 等

  • 该word文档中的页面需要编号。

有没有办法在c#中编写代码来执行此操作,还是有一些库/插件可以完成此任务?

一些例子将不胜感激。

2 个答案:

答案 0 :(得分:7)

答案 1 :(得分:0)

您需要使用哪个版本的Word?如果它是可以处理.docx文件格式的版本,即2007及更高版本,那么您可以直接生成这些文件。实际上,最简单的方法是在Word中创建一个.docx文件,用作一种模板,然后以编程方式操作该文件中的xml。

有关详细信息,请参阅