//建议部门
cells[2, 2].PutValue("建议部门");
cells[2, 2].SetStyle(style);
cells.SetColumnWidthPixel(2, 107);
//建 议 人
cells[2, 3].PutValue("建 议 人");
cells[2, 3].SetStyle(style);
cells.SetColumnWidthPixel(3, 69);
//类 别
cells[2, 4].PutValue("类 别");
cells[2, 4].SetStyle(style);
cells.SetColumnWidthPixel(4, 71);
//业务种类
cells[2, 5].PutValue("业务种类");
cells[2, 5].SetStyle(style);
cells.SetColumnWidthPixel(5, 71);
//标准名称
cells[2, 6].PutValue("标准名称");
cells[2, 6].SetStyle(style);
cells.SetColumnWidthPixel(6, 114);
//标准章、条编号
cells[2, 7].PutValue("标准章、条编号");
cells[2, 7].SetStyle(style);
cells.SetColumnWidthPixel(7, 104);
//意见建议
cells[2, 8].PutValue("意见建议");
cells[2, 8].SetStyle(style);
cells.SetColumnWidthPixel(8, 255);
//处理部门
cells[2, 9].PutValue("处理部门");
cells[2, 9].SetStyle(style);
cells.SetColumnWidthPixel(9, 72);
//处理进度
cells[2, 10].PutValue("处理进度");
cells[2, 10].SetStyle(style);
cells.SetColumnWidthPixel(10, 72);
//备注
cells[2, 11].PutValue("备注");
cells[2, 11].SetStyle(style);
cells.SetColumnWidthPixel(11, 255);
#endregion
#endregion
System.IO.MemoryStream ms = workbook.SaveToStream();//生成数据流
byte[] bt = ms.ToArray();
workbook.Save(@"E:\test.xls");//保存到硬盘
}
3. 生成好的Excel可以保存到磁盘,也可以在web页面上通过流的方式来下载。
复制代码 代码如下:
//下载
System.IO.MemoryStream ms = workbook.SaveToStream();//生成数据流
byte[] bt = ms.ToArray();
string fileName = "标准化工作意见建议汇总表" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";//客户端保存的文件名
//以字符流的形式下载文件
Response.ContentType = "application/vnd.ms-excel";
//通知浏览器下载文件而不是打开
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Response.BinaryWrite(bt);
Response.Flush();
Response.End();
您可能感兴趣的文章: