• 大小: 0.05M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: Excel  c    导出  导出excel  

资源简介

导出excel 超好用封装类库  带dll   org.in2bits.MyXls.dll

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Collections;
using System.Data;
using org.in2bits.MyXls;
using System.Reflection;
using Models;
using System.IO;
using System.Web.UI;
namespace TempCms.comment
{
    public class dropdown : System.Web.UI.Page 
    {

        /// 
        /// 导出excel表
        /// 

        /// 表内容 list集合
        ///  表头字段
        /// 文件名称加后缀
        public void dataToExcel(IList list string[] columns string fileName)
        {
            DataTable dt = new DataTable();
            dt = ToDataTable(list columns);
            XlsDocument xls = new XlsDocument();
            //xl

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        7919  2016-07-11 09:07  导出excle\dropdown.cs
     文件      125952  2016-07-11 09:07  导出excle\org.in2bits.MyXls.dll
     目录           0  2016-07-11 09:07  导出excle\

评论

共有 条评论