zoukankan      html  css  js  c++  java
  • asp.net导出excel文件方法之一

        public void Data2Excel(DataTable dtData)
        {
            System.Web.UI.WebControls.DataGrid dgExport = null;
                // 当前对话 
               System.Web.HttpContext curContext = System.Web.HttpContext.Current; 
                // IO用于导出并返回excel文件 
                System.IO.StringWriter strWriter = null; 
               System.Web.UI.HtmlTextWriter htmlWriter = null;
    
               if (dtData != null)
               {
                   // 设置编码和附件格式 
                   curContext.Response.AppendHeader("Content-Disposition", "attachment;filename=ExportStudentInfo.xls");
                   curContext.Response.ContentType = "application/vnd.ms-excel";
                   curContext.Response.ContentEncoding = System.Text.Encoding.UTF8;
                   curContext.Response.Charset = "";
    
                   // 导出excel文件 
                   strWriter = new System.IO.StringWriter();
                   htmlWriter = new System.Web.UI.HtmlTextWriter(strWriter);
    
                   // 为了解决dgData中可能进行了分页的情况,需要重新定义一个无分页的DataGrid 
                   dgExport = new System.Web.UI.WebControls.DataGrid();
                   dgExport.ItemDataBound += new DataGridItemEventHandler(dgExport_ItemDataBound);
                   dgExport.DataSource = dtData.DefaultView;
                   dgExport.AllowPaging = false;
                   dgExport.DataBind();
    
                   // 返回客户端 
                   dgExport.RenderControl(htmlWriter);
                   curContext.Response.Write(strWriter.ToString());
                   curContext.Response.End();
               }
        }
    
        void dgExport_ItemDataBound(object sender, DataGridItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                e.Item.Cells[3].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
                e.Item.Cells[5].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
            }
        }
  • 相关阅读:
    HTML DOM 节点
    HTML DOM 简介
    XML DOM
    JavaScript Window Screen
    JavaScript Window
    JavaScript Date(日期) 对象
    11.2 正睿停课训练 Day15
    10.31 正睿停课训练 Day13
    10.29 正睿停课训练 Day11
    BZOJ.4361.isn(DP 树状数组 容斥)
  • 原文地址:https://www.cnblogs.com/fumj/p/2799754.html
Copyright © 2011-2022 走看看