ASP.NET MVC 将IList<T>导出Excel文档的泛型类(继承自Action
最近MVC项目中要使用到Excel导出功能,在网上找了些资料,自己写了一个通用的泛型类(ExcelResult)。因为是直接继承自ActionResult这个抽象类的,所以用起来很方便,在控制器的Action中直接实例化返回即可。本人的代码功底不是很好,写的代码有点烂,希望大伙指正。
废话少说,直接上类完整代码:
View Code
1 /// <summary>
2 /// 提供将泛型集合数据导出Excel文档。
3 /// </summary>
4 /// <typeparam name="T"></typeparam>
5 public class ExcelResult<T> : ActionResult where T : new()
6 {
7 public ExcelResult(IList<T> entity, string fileName)
8 {
9 this.Entity = entity;
10 this.FileName = fileName;
11 }
12
13 public ExcelResult(IList<T> entity)
14 {
15 this.Entity = entity;
16
17 DateTime time = DateTime.Now;
18 this.FileName = string.Format("{0}_{1}_{2}_{3}",
19 time.Month, time.Day, time.Hour, time.Minute);
20 }
21
22 public IList<T> Entity
23 {
24 get;
25 set;
26 }
27
28 public string FileName
29 {
30 get;
31 set;
32 }
33
34 public override void ExecuteResult(ControllerContext context)
35 {
36 if (Entity == null)
37 {
38 new EmptyResult().ExecuteResult(context);
39 return;
40 }
41
42 SetResponse(context);
43 }
44
45 /// <summary>
46 &n
相关新闻>>
- 发表评论
-
- 最新评论 更多>>