1.NPOINPOI是 POI 项目的 .NET 版本。POI是一个开源的Java读写Excel、WORD等微软OLE2组件文档的项目。使用NPOI你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写。http://npoi.codeplex.com/http...
分类:
Web程序 时间:
2014-11-25 16:01:01
阅读次数:
170
转自: blog.csdn.net/echoshinian100/article/details/38540321 由于系统需要在网页上导 出Excel文件,最近花了一段时间去学习NPOI插件。通过NPOI插件在服务端来生成Excel文件流并下载到本地。NPOI实际上和Excel一毛 钱关系都没.....
分类:
其他好文 时间:
2014-11-21 15:38:37
阅读次数:
4264
//添加引用NPOI.dll//添加using NPOI.HSSF.UserModel;/// /// 导出数据到Excel /// /// /// public bool ExportOrderToExcel(ref string returnMsg) ...
http://blog.csdn.net/fireghost57/article/details/25623143http://www.cnblogs.com/jiagoushi/archive/2012/12/19/2825712.html为了操作Excel,npoi.net当然也需要对应的类来对...
分类:
其他好文 时间:
2014-11-19 20:33:41
阅读次数:
248
在winform中使用dsoframer 1.3载入word文档,但是在axFramerControl1.Open("NPOI.docx");在axFramerControl1控件中却显示Unable to display the inactive document.Click here to reacitive the document.
遇到这种情况的解决办法有两种方式,一是代码实现设置控件...
在winform中使用dsoframer 1.3载入word文档,但是在axFramerControl1.Open("NPOI.docx");在axFramerControl1控件中却显示Unable to display the inactive document.Click here to reacitive the document.
遇到这种情况的解决办法有两种方式,一是代码实现设置控件...
Controller 代码:public class SubArea2STIReportController : BaseController { [ActionDescription("分区2STI查询")] public ActionResult Index()...
分类:
Web程序 时间:
2014-11-17 13:47:18
阅读次数:
214
protected void btn_Export_Click(object sender, EventArgs e) { List list = ViewState["data"] as List; string[] AppPaths = HttpRuntime...
分类:
其他好文 时间:
2014-11-17 11:59:55
阅读次数:
230
尝试过很多Excel导入导出方法,都不太理想,无意中逛到oschina时,发现了NPOI,无需Office COM组件且不依赖Office,顿时惊为天人,怀着无比激动的心情写下此文。...
分类:
其他好文 时间:
2014-11-16 21:40:11
阅读次数:
347
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data; 6 using System.IO; 7 using ...
分类:
其他好文 时间:
2014-11-11 18:41:15
阅读次数:
233