可以使用Astar的办法,但是可能效果不会很好。
如果想效果好可采用自己绘制word表格,可以参考“动软.NET生成工具中数据表格定义word导出功能”,这种方式效果比较好,而且更适合复杂数据的导出
说说你的具体需求,是怎样的表结构,要导出什么样格式的WORD文档?
这是一个把GridView控件输出为Word格式的例子。
protected void Button1_Click(object sender, EventArgs e)
{
Export("application/ms-word", "员工报表.doc");
}
private void Export(string FileType, string FileName)
{
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());
Response.ContentType = FileType;
this.EnableViewState = false;
StringWriter tw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(tw);
GridView1.RenderControl(hw);
Response.Write(tw.ToString());
Response.End();
}