听闻npoi 2.0版本支持excel2007格式了,表示期待其表现.不过目前还是使用1.2.5稳重点. 生活中有太多的列表都需要一个导出功能,当然这里的生活指的的程序员的生活.DataTable是从数据库读取数据后常用的数据结构,又当然这里的DataTable是指.Net开发下的.今天刚好做了个导出excel的功能,于是乎就在完成功能后把该方法抽离出来做成一个类,以备后用.整个类如下: using System; using System.Collections.Generic; using…
一.根据Excel模板导出excel 1.导入NPOI.dll 2.DAL中添加类ExportExcel.cs using NPOI.SS.UserModel; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace DAL.Ass…
参考: http://blog.csdn.net/zhouqinghe24/article/details/8649346 参考下载http://www.cnblogs.com/dyllove98/archive/2013/08/06/3241515.html 参考多个sheethttp://www.cnblogs.com/jicheng/p/5961257.html 参考列表写入 1.nuget搜索安装Npoi 2.代码 public class UserInfo { public strin…