NPOI可以在没装OFFICE的情况下操作EXCEL,WORD等,也不用在程序中引用微软的office组件。另外我加了在MVC中把HTML TABLE导出EXCEL的方法。
调用代码如下:
using NPOI;
public FileResult GetFile(string html)
{
html = Server.UrlDecode(html);
ExportFile result = new ExportFile(html);
result.AlertErrm
NPOI可以在没装OFFICE的情况下操作EXCEL,WORD等,也不用在程序中引用微软的office组件。另外还有在MVC中把HTML TABLE导出EXCEL的方法,要以很省力啦。
代码如下:
using NPOI;
//……
public FileResult GetFile(string html)
{
html = Server.UrlDecode(html);
ExportFile result = new Export