文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>GridView 导出Excel

GridView 导出Excel

时间:2011-01-25  来源:TNTZWC

    {         //base.VerifyRenderingInServerForm(control);     }     protected void btnExpExcel_Click(object sender, EventArgs e)     {         this.Response.Clear();         this.Response.AppendHeader("Content-Disposition", "attachment; filename=" + DateTime.Now.ToString("yyyyMMddhhmmss") + "FileName.xls");         this.Response.Charset = "UTF8";  //输出的字符集         this.Response.ContentEncoding = System.Text.Encoding.UTF8;  //编码类型         Response.ContentType = "application/vnd.ms-excel";   //输出Excel            System.IO.StringWriter tw = new System.IO.StringWriter();         HtmlTextWriter hw = new HtmlTextWriter(tw);         this.gvData.RenderControl(hw);         this.Response.Write(tw.ToString());         this.Response.End();     }
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载