本文主要是介绍.NET中MVC使用NPOI快速的导出excel表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
效果图:
@*前台代码*@
@{ViewBag.Title = "Index";
}<a href="~/home/toexcel">导出Excel表</a>
//后台代码using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using System.IO;namespace MvcApplication1.Controllers
{public class HomeController : Controller{//// GET: /Home/public ActionResult Index(){return View();}/// <summary>/// 表头的样式/// </summary>/// <p
这篇关于.NET中MVC使用NPOI快速的导出excel表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!