• 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
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
  • 相关阅读:
    25-[jQuery]-ajax
    25-[jQuery]-事件
    24-[jQuery]-属性操作,文档操作
    2016.8.16 JQuery学习记录
    移动端开发之图片上传与显示
    2016.8.16 HTML5重要标签及其属性学习
    2016.8.14 HTML5重要标签以及属性学习
    2016.8.14 HTML5重要标签及其属性学习
    HTML5 重要标签以及属性学习
    HTML5 重要标签及其属性学习
  • 原文地址:https://www.cnblogs.com/gerryge/p/GE.html
Copyright © 2020-2023  润新知