介绍 
把GridView导出为一个Excel文件算是一个经常要用到的功能,也比较简单,我们来扩展一个GridView以实现这样的功能。 
控件开发 
1、新建一个继承自GridView的类。 
复制C#代码保存代码/// 
/// 继承自GridView
/// 
[ToolboxData(@"<{0}:SmartGridView runat='server'>{0}:SmartGridView>")]
public class SmartGridView : GridView
{
}
2、重写OnRowCommand,以实现把GridView导出为Excel的功能 
复制C#代码保存代码/// 
/// OnRowCommand
/// 
/// 
protected override void OnRowCommand(GridViewCommandEventArgs e)
{
 if (e.CommandName.ToLower() == "exporttoexcel")
 {
 System.Web.HttpContext.Current.Response.ClearContent();
 // e.CommandArgument用“;”隔开两部分,左边的部分为导出Excel的文件名称
 System.Web.HttpContext.Current.Response.AddHeader("content-disposition",
 "attachment; filename=" + e.CommandArgument.ToString().Split(';')[0] + ".xls");
 System.Web.HttpContext.Current.Response.ContentType = "application/excel";
 System.IO.StringWriter sw = new System.IO.StringWriter();
 HtmlTextWriter htw = new HtmlTextWriter(sw);
 // e.CommandArgument用“;”隔开两部分,右边的部分为需要隐藏的列的索引(列索引用“,”分开)
 if (e.CommandArgument.ToString().Split(';').Length > 1)
 {
 foreach (string s in e.CommandArgument.ToString().Split(';')[1].Split(','))
 {
 int i;
 if (!Int32.TryParse(s, out i))
 {
 throw new ArgumentException("需要隐藏的列的索引不是整数");
 }
 if (i > this.Columns.Count)
 {
 throw new ArgumentOutOfRangeException("需要隐藏的列的索引超出范围");
 }
 this.Columns[i].Visible = false;
 }
 }
 // 隐藏“导出Excel”按钮
 ((Control) e.CommandSource).Visible = false;
 // 如果HeaderRow里的控件是button的话,则把它替换成文本
 foreach (TableCell tc in this.HeaderRow.Cells)
 {
 // TableCell里的每个Control
 foreach (Control c in tc.Controls)
 {
 // 如果控件继承自接口IButtonControl
 if (c.GetType().GetInterface("IButtonControl") != null
 && c.GetType().GetInterface("IButtonControl").Equals(typeof(IButtonControl)))
 {
 // 如果该控件不是“导出Excel”按钮则把button转换成文本
 if (!c.Equals(e.CommandSource))
 {
 tc.Controls.Clear();
 tc.Text = ((IButtonControl) c).Text;
 }
 }
 }
 }
 // 将服务器控件的内容输出到所提供的 System.Web.UI.HtmlTextWriter 对象中
 this.RenderControl(htw);
 System.Web.HttpContext.Current.Response.Write(sw.ToString());
 System.Web.HttpContext.Current.Response.End();
 }
 base.OnRowCommand(e);
}
控件使用 
添加这个控件到工具箱里,然后拖拽到webform上,在GridView内加一个按钮,把CommandName属性设置为“ExportToExcel”,CommandArgument属性的值用“;”做分隔符分为两部分,左边的部分为导出Excel的文件名称,右边的部分为需要隐藏的列的索引(列索引用“,”分开) 
ObjData.cs 
复制C#代码保存代码using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.ComponentModel;
/// 
/// OjbData 的摘要说明
/// 
public class OjbData
{
 public OjbData()
 {
 //
 // TOD 在此处添加构造函数逻辑
 //
 }
 [DataObjectMethod(DataObjectMethodType.Select, true)]
 public DataTable Select()
 {
 DataTable dt = new DataTable();
 dt.Columns.Add("no", typeof(string));
 dt.Columns.Add("name", typeof(string));
 for (int i = 0; i < 30; i++)
 {
 DataRow dr = dt.NewRow();
 dr[0] = "no" + i.ToString().PadLeft(2, '0');
 dr[1] = "name" + i.ToString().PadLeft(2, '0');
 dt.Rows.Add(dr);
 }
 return dt;
 }
}
Default.aspx 
复制ASPX代码保存代码<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
 SmartGridView测试
 
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
 SmartGridView测试
 
注:为了防止出错要在.cs代码中加上下面这句 
复制C#代码保存代码public override void VerifyRenderingInServerForm(Control control)
{
}
另外,如果你的GridView中含有命令按钮的话要在.aspx页面的头部中加上下面这个属性 
复制C#代码保存代码EnableEventValidation="false"
转自【webabcd-.NET】