Chinaunix首页 | 论坛 | 博客
  • 博客访问: 502406
  • 博文数量: 130
  • 博客积分: 3581
  • 博客等级: 中校
  • 技术积分: 1200
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-18 10:51
文章分类

全部博文(130)

文章存档

2016年(1)

2015年(8)

2014年(6)

2013年(2)

2012年(9)

2011年(16)

2010年(5)

2009年(4)

2008年(2)

2007年(6)

2006年(50)

2005年(21)

我的朋友

分类:

2006-07-14 12:28:34

不適用于GridView
 
public void ToExcel(System.Web.UI.Control ctl)
{
        Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
        Response.ContentEncoding = System.Text.Encoding.GetEncoding("Big5");
        Response.ContentType = "application/ms-excel";
        ctl.Page.EnableViewState = false;
        System.IO.StringWriter tw = new StringWriter();  
    
        System.Web.UI.HtmlTextWriter hw = new HtmlTextWriter(tw);
        ctl.RenderControl(hw);
        Response.Write(tw.ToString());
        Response.End();
 
    }
 public void OnClick(object sender, EventArgs e)
 {
        ToExcel(datagrid);

 }
阅读(1426) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~