• 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
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
  • 相关阅读:
    mysql小记
    mysql多实例安装
    源码编译安装mysql
    url监控
    ping命令的用法大全!
    JSON结构
    <a href="onclick="javascript:goSearch(this)" class="click" name="Java">Java</a>为什么a标签的父节点获取不到
    处理jquery版本之间冲突
    C# 语言如何获取json格式的数据,不用javascript用c#实现。。。
    在C#用HttpWebRequest中发送GET/HTTP/HTTPS请求【转载】
  • 原文地址:https://www.cnblogs.com/gerryge/p/GE.html
Copyright © 2020-2023  润新知