zoukankan      html  css  js  c++  java
  • 将Gridview导出到Excel

    GridViewToExcel(EdceExcelGV, "application/ms-exce","xxxxxx表");

    protected void GridViewToExcel(Control ctrl, string FileType, string FileName)
    {

    /*Response.Charset = "GB2312";
    Response.ContentEncoding = Encoding.UTF8;
    HttpContext.Current.Response.AppendHeader("Content-Disposition",
    "attachment;filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8).ToString());
    HttpContext.Current.Response.ContentType = FileType;//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
    this.EnableViewState=false;
    StringWriter sw=new StringWriter ();
    HtmlTextWriter htw=new HtmlTextWriter(sw);
    ctrl.RenderControl(htw);
    HttpContext.Current.Response.Write(sw.ToString());
    HttpContext.Current.Response.End();*/

    Response.ClearContent();
    Response.BufferOutput = true;
    Response.Charset = "utf-8";
    Response.ContentType = FileType;
    Response.ContentEncoding = System.Text.Encoding.UTF8;
    Response.AppendHeader("Content-Disposition", "attachment;filename=" + Server.UrlEncode(FileName) + ".xls");
    this.EnableViewState=false;
    StringWriter sw=new StringWriter ();
    HtmlTextWriter htw=new HtmlTextWriter(sw);
    ctrl.RenderControl(htw);
    HttpContext.Current.Response.Write(sw.ToString());
    HttpContext.Current.Response.End();
    }
    public override void VerifyRenderingInServerForm(Control control)
    {
    }

  • 相关阅读:
    js 延迟函数
    reduce
    angular2 select 联动
    小程序图片展示模式
    e.target 和 e.currentTarget
    jquery weui 图片浏览器Photo Browser
    ng2中 如何使用自定义属性data-id 以及赋值和取值操作
    jquery img src赋值
    JQuery 自定义属性取值 赋值
    unsupported media type 415
  • 原文地址:https://www.cnblogs.com/jinhaoObject/p/4496416.html
Copyright © 2011-2022 走看看