您的位置:资讯频道 > 技术文档 > 控件使用经验谈

扩展GridView控件——导出为Excel

来源:csdn   作者:slove_cao   时间:2007-08-21  点击:694 次

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

 

控件开发
1
、新建一个继承自  GridView  的类。

/**//// <summary>
/// 
继承自GridView
/// </summary>
[ToolboxData(@"<{0}:SmartGridView runat='server'></{0}:SmartGridView>")]
public class SmartGridView : GridView
{
}

 

2、重写  OnRowCommand,以实现把  GridView  导出为  Excel  的功能

        /**//// <summary>
        
/// OnRowCommand
        
/// </summary>
        
/// <param name="e"></param>
        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

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;

/**//// <summary>
/// OjbData 
的摘要说明
/// </summary>
public class OjbData
{
    
public OjbData()
    
{
        
//
        // TODO: 
在此处添加构造函数逻辑
        //
    }

    [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

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    
<title>SmartGridView
测试</title>
</head>
<body>
    
<form id="form1" runat="server">
        
<div>
            
<yyc:SmartGridView ID="SmartGridView1" runat="server" AutoGenerateColumns="False"
                DataSourceID
="ObjectDataSource1">
                
<Columns>
                    
<asp:TemplateField ItemStyle-Width="50px">
                        
<headertemplate>
                            
<asp:Button id="btnExportToExcel" runat="server" Text="Excel" 

CommandName="ExportToExcel" CommandArgument="ExcelFileName;5,6" />
                        
</headertemplate>
                        
<itemtemplate>
                            <%
# Container.DataItemIndex + 1 %>
                        
</itemtemplate>
                    
</asp:TemplateField>