[译]ASP.Net 2.0: Export GridView to Excel

 

ASP.Net 2.0: Export GridView to Excel

 【原文见: http://www.c-sharpcorner.com/UploadFile/DipalChoksi/exportxl_asp2_dc11032006003657AM/exportxl_asp2_dc.aspx

Author:
Dipal Choksi
Translator: SPARON
T-Blog: http://sparon.cnblogs.com
T-MSN: ZhaoKeYong@hotmail.com

 

本文描述了在ASP.NET 2.0中如何将GridView 导出为 Excel

 

简介:

在本文中我们将具体介绍如何将ASP.Net 2.0下的GridView导出为Excel.

本文的焦点是Gridview导为Excel功能和它的数据绑定只出口示范功能.

本文代码可以用来导出为Excel的功能但不局限于这个部分,还可以在很多项目中使用。

 

Step 1: Setup your web page with the Gridview

这里我假定你满足:在一个页面中有个名为GridView1GridView。在GridView中我们绑定了一个名为ContactPhoneSQL数据库。接下来的代码就是如何将GridView导出为Excel并且不依赖于具体的数据绑定还具有场景自改变能力。

ContactPhone Table Structure:

Column Name

Type

ContactID

Int (Identity)

FName

Varchar(50)

LName

Varchar(50)

ContactPhone

Varchar(20)

Step: The Actual Export

这段代码是直接输出为Excel的,你也可以改变content-dispositionContentType以输出不同的类型。

 

 1string attachment = "attachment; filename=Contacts.xls";
 2
 3Response.ClearContent();
 4
 5Response.AddHeader("content-disposition", attachment);
 6
 7Response.ContentType = "application/ms-excel";
 8
 9StringWriter sw = new StringWriter();
10
11HtmlTextWriter htw = new HtmlTextWriter(sw);
12
13GridView1.RenderControl(htw);
14
15Response.Write(sw.ToString());
16
17Response.End(); 
18
19



如果你运行以上代码,将返回一个HttpException

'GridView1'是一个类型为'GridView'的控件,必须为其添加一个runat=server标记.

为避免这个错误,我们添加以下代码:

 

1public override void VerifyRenderingInServerForm(Control control)
2
3{
4
5}

6

 

Step : Convert the contents

如果GridView中有其它控件,比如CheckboxesDropdownlists,我们需要将它转换为其相关的值,以下递归就用于导出Excel前的准备工作,将各类控件转换为其相关值.

 

 1private void PrepareGridViewForExport(Control gv)
 2
 3{
 4
 5    LinkButton lb = new LinkButton();
 6
 7    Literal l = new Literal();
 8
 9    string name = String.Empty;
10
11    for (int i = 0; i < gv.Controls.Count; i++)
12
13    {
14
15        if (gv.Controls[i].GetType() == typeof(LinkButton))
16
17        {
18
19            l.Text = (gv.Controls[i] as LinkButton).Text;
20
21 gv.Controls.Remove(gv.Controls[i]);
22
23 gv.Controls.AddAt(i, l);
24
25        }

26
27        else if (gv.Controls[i].GetType() == typeof(DropDownList))
28
29        {
30
31            l.Text = (gv.Controls[i] as DropDownList).SelectedItem.Text;
32
33            gv.Controls.Remove(gv.Controls[i]);
34
35            gv.Controls.AddAt(i, l);
36
37        }

38
39        else if (gv.Controls[i].GetType() == typeof(CheckBox))
40
41        {
42
43            l.Text = (gv.Controls[i] as CheckBox).Checked? "True" : "False";
44
45            gv.Controls.Remove(gv.Controls[i]);
46
47            gv.Controls.AddAt(i, l);
48
49        }

50
51        if (gv.Controls[i].HasControls())
52
53        {
54
55            PrepareGridViewForExport(gv.Controls[i]);
56
57        }

58
59}

60
61

Code Listing:

Image: Page Design


Image : Sample in action



Image: Export to Excel button is clicked


Image: GridView contents exported to Excel




 

ExcelExport.aspx




ExcelExport.aspx.cs 

 

 

Implementation Options:

 

通常情况,在输出函数中开发人员都会面临一个错误,典型的就是"RegisterForEventValidation can only be called during Render();"

 

访问者通常会在评论中提出一些好的建议.我特别要强调的是开发者需要重写VerifyRenderingInServerForm方法,该方法描述如下:

  • Step 1:实现导出功能的上述功能.
  • Step 2:重写一个VerifyRenderingInServerForm的空方法.
  • Step 3:修改ExportGridView函数,在绿色高亮代码部创建HtmlForm【原句为:The code highlighted in green creates and HtmlForm on the fly,在翻译HtmlForm on the fly时遇到了一些困难,on the fly未翻译,请各位高手指教】,在导出girdview之前,添加gridview 到新的form并且render它(取代原来的render实现)

 

 1private void ExportGridView()
 2
 3{
 4
 5      string attachment = "attachment; filename=Contacts.xls";
 6
 7      Response.ClearContent();
 8
 9      Response.AddHeader("content-disposition", attachment);
10
11      Response.ContentType = "application/ms-excel";
12
13      StringWriter sw = new StringWriter();
14
15      HtmlTextWriter htw = new HtmlTextWriter(sw);
16
17 
18
19      // Create a form to contain the grid
20
21      HtmlForm frm = new HtmlForm();
22
23      GridView1.Parent.Controls.Add(frm);
24
25      frm.Attributes["runat"= "server";
26
27      frm.Controls.Add(GridView1);
28
29 
30
31      frm.RenderControl(htw);
32
33      //GridView1.RenderControl(htw);
34
35      Response.Write(sw.ToString());
36
37      Response.End();
38
39}

40
41

 

这样实施有个优势,就是可将其设置为复用代码类库,不用每次去复写基类的方法.

 

Note to readers:

Thank you for your comments and feedback! Happy coding!!!

 

ASP.Net 2.0: Export GridView to Excel - Part II

该文中将会在导出Excel GridView引入Hyperlink,以至于需要使用更多的反射来重新设计原来的逻辑.


posted @ 2007-04-06 17:27  SPARON  阅读(6859)  评论(8编辑  收藏  举报