导出GridView到Excel中的关键之处(downmoon)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 导出GridView到Excel中的关键之处(downmoon)

导出GridView到Excel中的关键之处(downmoon)

 2013/8/25 15:01:31  蒋叶湖  博客园  我要评论(0)
  • 摘要:导出GridView到Excel中的关键之处用法:ToExcel(GVStaff,TextBox1.Text);publicstaticvoidToExcel(System.Web.UI.Controlctl,stringFileName)...{HttpContext.Current.Response.Charset="UTF-8";HttpContext.Current.Response.ContentEncoding=System.Text.Encoding.Default
  • 标签:excel view

class="postTitle">导出GridView到Excel中的关键之处
用法: ToExcel(GVStaff, TextBox1.Text);

public static void ToExcel(System.Web.UI.Control ctl,string FileName)
        
{
            HttpContext.Current.Response.Charset 
="UTF-8";
            HttpContext.Current.Response.ContentEncoding 
=System.Text.Encoding.Default;
            HttpContext.Current.Response.ContentType 
="application/ms-excel";
            HttpContext.Current.Response.AppendHeader(
"Content-Disposition","attachment;filename="+""+FileName+".xls");
            ctl.Page.EnableViewState 
=false;
            System.IO.StringWriter  tw 
= new System.IO.StringWriter();
            HtmlTextWriter hw 
= new HtmlTextWriter(tw);
            ctl.RenderControl(hw);
            HttpContext.Current.Response.Write(tw.ToString());
            HttpContext.Current.Response.End();
        }
        


    
必须有下面这句!否则不会通过!

public override void VerifyRenderingInServerForm(Control control)
    {
        // Confirms that an HtmlForm control is rendered for
    }
发表评论
用户名: 匿名