zoukankan      html  css  js  c++  java
  • GridView导出Excel

    GridView导出Excel:
    /// <summary>
    /// 需要重写GridView所在的页面的VerifyRenderingInServerForm事件
    /// public override void VerifyRenderingInServerForm(Control control)
    /// { }
    /// </summary>
    private void ExportToExcel(GridView gv, string fileName)
    {
        Response.Clear();
        Response.Buffer 
    = true;
        Response.Charset 
    = "gb2312";
        Response.Write(
    "<meta http-equiv=Content-Type content=text/html;charset=gb2312>");
        Response.AppendHeader(
    "Content-Disposition""attachment;filename=" + fileName);
        Response.ContentEncoding 
    = System.Text.Encoding.GetEncoding("gb2312"); ;
        Response.ContentType 
    = "application/vnd.xls";
        
    this.EnableViewState = false;
        StringWriter tw 
    = new StringWriter();
        HtmlTextWriter hw 
    = new HtmlTextWriter(tw);
        gv.RenderControl(hw);
        Response.Output.Write(tw.ToString());
        Response.Flush();
        Response.End();
    }

    /// <summary>
    /// 配合 Gridvidew 汇出Excel使用
    /// </summary>
    public override void VerifyRenderingInServerForm(Control control)
    { }
    呵呵
  • 相关阅读:
    #1015 : KMP算法
    #1014 Trie树
    Type.IsContextful 说明
    判断.net中在windows系统下的字节序
    Python3 循环语句
    adb 脚本
    如何使用 adb 命令实现自动化测试
    python 字符串的方法和注释
    Android使用Fiddler模拟弱网络环境测试
    Android定位元素与操作
  • 原文地址:https://www.cnblogs.com/anjou/p/2132111.html
Copyright © 2011-2022 走看看