復制代碼 代碼如下:
//由gridviw導出為Excel
public static void ToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset = "UTF-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType = "application/ms-excel";//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
ctl.Page.EnableViewState = false;
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}
這是一段網上很多人使用的導出EXCEL代碼,但使用過程中發現很多不足的地方,其不用引入其它控件。
缺點:
1、我采用ASPNETPAGER分頁時只能導出第一頁。
2、使用十分不靈活,對樣式的控制,字段的控制不靈活。
使用中需要注意:
1、 <%@ Page Language="C#" AutoEventWireup="true" EnableEventValidation="false" CodeFile="Default.aspx.cs" Inherits="_Default"%>
加上這句。
2、在後台文件中加上:
public override void VerifyRenderingInServerForm(Control control)
{
}
3、需引入 using System.IO; 其它相關文章:
ASP.NET操作Excel備忘錄
ASP.net連接Excel的代碼
asp.net 讀取並顯示excel數據的實現代碼
在Asp.net用C#建立動態Excel
asp.net 操作excel的實現代碼