zoukankan      html  css  js  c++  java
  • GridView直接导Excel

    /// <summary>
        /// 匯出到Excel
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnExport_Click(object sender, EventArgs e)
        {
            ExportGridViewToExcel(Response, GridView_trdord, "Tracing");
        }
        //到出excel
        public void ExportGridViewToExcel(HttpResponse response, Control gv, String excelFileName)
        {
            response.Clear();
            response.Buffer = true;
            response.Charset = "UTF-8";
            response.AppendHeader("Content-Disposition", string.Format("attachment;filename={0}.xls", excelFileName));
            response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
            response.ContentType = "application/ms-excel";

            System.Globalization.CultureInfo myCItrad = new System.Globalization.CultureInfo("ZH-CN", true);
            System.IO.StringWriter oStringWriter = new System.IO.StringWriter(myCItrad);
            System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);

            GridView_trdord.AllowPaging = false;//清除分页

            //gvEfficiency.AllowSorting = false; //清除排序     
            //SetReport();
            //控制GridView导出Excel后的样式
            this.GridView_trdord.GridLines = GridLines.Both;
            this.GridView_trdord.RenderControl(oHtmlTextWriter);

            Response.Output.Write(oStringWriter.ToString());
            Response.Flush();
            Response.End();
            //GridView1.AllowSorting = true; //恢复排序   
            GridView_trdord.AllowPaging = true;  //恢复排序
            //SetReport(); //再次绑定
        }

        //以下的代码务必要加在上面一段后面,否则会出现错误:
        //Control 'grdvExcel' of type 'GridView' must be placed inside a form tag with runat=server.
        public override void VerifyRenderingInServerForm(Control control)
        {
            // 覆盖VerifyRenderingInServerForm方法,非常重要,否则系统会报错
            //base.VerifyRenderingInServerForm(control);
        }

    Any fool can write code that a computer can understand. Good programmers write code that humans can understand. –Martin Fowler
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
  • 相关阅读:
    Android数据存储之IO
    UVA
    【源代码剖析】tornado-memcached-sessions —— Tornado session 支持的实现(二)
    杀毒与免杀技术具体解释之二:特征码定位-工具及原理
    C++ 訪问控制权限图解
    新辰:传统行业进军互联网 怎样颠覆网络获得新生?
    【二】注入框架RoboGuice使用:(Your First View Injection)
    POJ 1741 Tree 树形DP(分治)
    技术单词
    活动合集 | 2017微软技术暨生态大会 英雄讲师召集令
  • 原文地址:https://www.cnblogs.com/gerryge/p/GE.html
Copyright © 2011-2022 走看看