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
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
  • 相关阅读:
    SSH框架总结
    SSM框架——详细整合教程(Spring+SpringMVC+MyBatis)
    iBATIS SQL Maps
    深入理解Mybatis中sqlSessionFactory机制原理
    mybatis源码分析(1)——SqlSessionFactory实例的产生过程
    MyBatis常用对象SqlSessionFactory和SqlSession介绍和运用
    Generator生成器函数
    MyBatis学习4---使用MyBatis_Generator生成Dto、Dao、Mapping
    采用图形用户界面的操作系统/应用程序
    图形界面的特点是人们不需要记忆和键入繁琐的命令
  • 原文地址:https://www.cnblogs.com/gerryge/p/GE.html
Copyright © 2011-2022 走看看