`
isiqi
  • 浏览: 16065485 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

GridView控件导出为Excel

阅读更多
把GridView导出为一个Excel文件算是一个经常要用到的功能,也比较简单,我们来扩展一个GridView以实现这样的功能。


控件开发
1、新建一个继承自GridView的类。
/**////<summary>
///继承自GridView
///</summary>

[ToolboxData(@"<{0}:SmartGridViewrunat='server'></{0}:SmartGridView>")]
publicclassSmartGridView:GridView
{
}

2、重写OnRowCommand,以实现把GridView导出为Excel的功能
/**////<summary>
///OnRowCommand
///</summary>
///<paramname="e"></param>

protectedoverridevoidOnRowCommand(GridViewCommandEventArgse)
{
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.StringWritersw
=newSystem.IO.StringWriter();
HtmlTextWriterhtw
=newHtmlTextWriter(sw);

//e.CommandArgument用“;”隔开两部分,右边的部分为需要隐藏的列的索引(列索引用“,”分开)
if(e.CommandArgument.ToString().Split(';').Length>1)
{
foreach(stringsine.CommandArgument.ToString().Split(';')[1].Split(','))
{
inti;

if(!Int32.TryParse(s,outi))
{
thrownewArgumentException("需要隐藏的列的索引不是整数");
}


if(i>this.Columns.Count)
{
thrownewArgumentOutOfRangeException("需要隐藏的列的索引超出范围");
}


this.Columns[i].Visible=false;
}

}


//隐藏“导出Excel”按钮
((Control)e.CommandSource).Visible=false;

//如果HeaderRow里的控件是button的话,则把它替换成文本
foreach(TableCelltcinthis.HeaderRow.Cells)
{
//TableCell里的每个Control
foreach(Controlcintc.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
usingSystem;
usingSystem.Data;
usingSystem.Configuration;
usingSystem.Web;
usingSystem.Web.Security;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.WebControls.WebParts;
usingSystem.Web.UI.HtmlControls;

usingSystem.ComponentModel;

/**////<summary>
///OjbData的摘要说明
///</summary>

publicclassOjbData
{
publicOjbData()
{
//
//TODO:在此处添加构造函数逻辑
//
}


[DataObjectMethod(DataObjectMethodType.Select,
true)]
publicDataTableSelect()
{
DataTabledt
=newDataTable();
dt.Columns.Add(
"no",typeof(string));
dt.Columns.Add(
"name",typeof(string));

for(inti=0;i<30;i++)
{
DataRowdr
=dt.NewRow();
dr[
0]="no"+i.ToString().PadLeft(2,'0');
dr[
1]="name"+i.ToString().PadLeft(2,'0');

dt.Rows.Add(dr);
}


returndt;
}

}


Default.aspx
<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Default.aspx.cs"Inherits="_Default"%>

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title>SmartGridView测试</title>
</head>
<body>
<formid="form1"runat="server">
<div>
<yyc:SmartGridViewID="SmartGridView1"runat="server"AutoGenerateColumns="False"
DataSourceID
="ObjectDataSource1">
<Columns>
<asp:TemplateFieldItemStyle-Width="50px">
<headertemplate>
<asp:Buttonid="btnExportToExcel"runat="server"Text="Excel"CommandName="ExportToExcel"CommandArgument="ExcelFileName;5,6"/>
</headertemplate>
<itemtemplate>
<%#Container.DataItemIndex+1%>
</itemtemplate>
</asp:TemplateField>
<asp:BoundFieldDataField="no"HeaderText="序号"SortExpression="no"ItemStyle-Width="100px"/>
<asp:BoundFieldDataField="name"HeaderText="名称"SortExpression="name"ItemStyle-Width="100px"/>
<asp:BoundFieldDataField="no"HeaderText="序号"SortExpression="no"ItemStyle-Width="100px"/>
<asp:BoundFieldDataField="name"HeaderText="名称"SortExpression="name"ItemStyle-Width="100px"/>
<asp:BoundFieldDataField="no"HeaderText="序号"SortExpression="no"ItemStyle-Width="100px"/>
<asp:BoundFieldDataField="name"HeaderText="名称"SortExpression="name"ItemStyle-Width="100px"/>
</Columns>
</yyc:SmartGridView>
<asp:ObjectDataSourceID="ObjectDataSource1"runat="server"SelectMethod="Select"
TypeName
="OjbData"></asp:ObjectDataSource>
</div>
</form>
</body>
</html>

注:为了防止出错要在.cs代码中加上下面这句
publicoverridevoidVerifyRenderingInServerForm(Controlcontrol)
{

}

另外,如果你的GridView中含有命令按钮的话要在.aspx页面的头部中加上下面这个属性
EnableEventValidation="false"


OK

源码下载

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics