程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net導出EXCEL的功能代碼

asp.net導出EXCEL的功能代碼

編輯:ASP.NET基礎
復制代碼 代碼如下:
//由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的實現代碼
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved