.net Table 导出Excel

             Table table = new Table();
            Response.ClearContent();
            Response.Buffer = true; 
            Response.Charset = "GB2312"; 
            Response.AppendHeader("Content-Disposition", "attachment;filename=FileName1.xls");
            Response.ContentEncoding = System.Text.Encoding.UTF8;
            Response.ContentType = "application/excel"; 
            System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
            System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
            table.RenderControl(oHtmlTextWriter);
            Response.Write(oStringWriter.ToString());
            Response.Flush();
            Response.End(); 
原文地址:https://www.cnblogs.com/lucoo/p/TableExcel.html