几点:
1 服务器要安装excel
2 引用Microsoft Excel 11.0 Object Library
3 在网上找一下excel里面方法的文档,通过调用这些方法定位表格
ps:
还有一些第三方的调用excel的东西,可以用以下
导入到xls文件中!
protected void Button1_Click(object sender, EventArgs e)
{
Export("Application/MS-excel", "某报表.xls");
}
private void Export(string FileType, string FileName)
{
Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.UTF7;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());
Response.ContentType = FileType;
this.EnableViewState = false;
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
GridView1.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
}
最简单的办法就是把用数据库出来的东西复制到EXCEL中,再更改,这是最笨,最有效的办法
1、从数据库中复制需要打印的内容,
2、粘贴到EXCEL空表中
3、在EXCEL文件菜单中选打印即可