本帖最后由 chao_qiu 于 2010-12-09 12:55:59 编辑

解决方案 »

  1.   

     页面内容导出WORD
    http://topic.csdn.net/u/20090323/16/c91b0ec0-2df8-449c-b51d-459127a5b627.html
    或   Word.Range oRng = Doc.Books.get_Item(ref oEndOfDoc).Range;
                        Word.Table tb = Doc.Tables.Add(oRng, 1, 2, ref nothing, ref nothing);
                        tb.Rows.Alignment = Word.WdRowAlignment.wdAlignRowCenter;
                        tb.Borders.OutsideLineStyle = Word.WdLineStyle.wdLineStyleSingle;
                        tb.Borders.InsideLineStyle = Word.WdLineStyle.wdLineStyleSingle;                    int i = 1;
                        tb.Cell(1, 1).Range.Text = "";
                        tb.Cell(1, 2).Range.Text = "";
    操作WORD生成表格
      

  2.   

    http://topic.csdn.net/u/20101202/10/eea00b9f-a45c-4947-95f7-bc30028bb678.html
      

  3.   

    不是页面导出,是后台获取的一个DataTable 只需要这个数据源里的数据导出
      

  4.   

    这段HTML源码只是为了让大家明白我需要导出的数据的格式