设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 319|回复: 3
打印 上一主题 下一主题

ASP.NET2.0中Gridview中数据操作技巧

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-16 19:44:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一、Gridview中的内容导出到Excel

  在日常工作中,经常要将gridview中的内容导出到excel报表中去,在asp.net 2.0中,同样可以很方便地实现将整个gridview中的内容导出到excel报表中去,下面介绍其具体做法:

  首先,建立基本的页面default.aspx

    <form id="form1" runat="server">
    <div>
    <asp:GridView ID="GridView1" runat="server">
    </asp:GridView>
    </div>
    <br/>
    <asp:Button ID="BtnExport" runat="server" OnClick="BtnExport_Click"
    Text="Export to Excel" />
    </form>

      在default.aspx.cs中,写入如下代码:

    protected void Page_Load(object sender, EventArgs e)
    {
     if (!Page.IsPostBack)
     {
      BindData();
     }
    }
    private void BindData()
    {
     string query = "SELECT * FROM customers";
     SqlConnection myConnection = new SqlConnection(ConnectionString);
     SqlDataAdapter ad = new SqlDataAdapter(query, myConnection);
     DataSet ds = new DataSet();
     ad.Fill(ds, "customers");
     GridView1.DataSource = ds;
     GridView1.DataBind();
    }

    public override void VerifyRenderingInServerForm(Control control)
    {
     // Confirms that an HtmlForm control is rendered for
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
     Response.Clear();
     Response.AddHeader("content-disposition","attachment;filename=FileName.xls");
     Response.Charset = "gb2312";
     Response.ContentType = "application/vnd.xls";
     System.IO.StringWriter stringWrite = new System.IO.StringWriter();
     System.Web.UI.HtmlTextWriter htmlWrite =new HtmlTextWriter(stringWrite);

     GridView1.AllowPaging = false;
     BindData();
     GridView1.RenderControl(htmlWrite);

     Response.Write(stringWrite.ToString());
     Response.End();
     GridView1.AllowPaging = true;
     BindData();
    }
    protected void paging(object sender,GridViewPageEventArgs e)
    {
     GridView1.PageIndex = e.NewPageIndex;
     BindData();
    }

      在上面的代码中,我们首先将gridview绑定到指定的数据源中,然后在button1的按钮(用来做导出到EXCEL的)的事件中,写入相关的代码。这里使用Response.AddHeader("content-disposition","attachment;filename=exporttoexcel.xls");中的filename来指定将要导出的excel的文件名,这里是exporttoexcel.xls。要注意的是,由于gridview的内容可能是分页显示的,因此,这里在每次导出excel时,先将gridview的allowpaging属性设置为false,然后通过页面流的方式导出当前页的gridview到excel中,最后再重新设置其allowpaging属性。另外要注意的是,要写一个空的VerifyRenderingInServerForm方法(必须写),以确认在运行时为指定的ASP.NET 服务器控件呈现HtmlForm 控件。

      二、访问gridview中的各类控件

      在gridview中,经常要访问其中的各类控件,比如dropdownlist,radiobutton,checkbox等,下面归纳下在gridview中访问各类控件的方法。

      首先看下如何在gridview中访问dropdownlist控件。假设在一个gridviw中,展现的每条记录中都需要供用户用下拉选择的方式选择dropdownlist控件中的内容,则可以使用如下代码,当用户选择好gridview中的dropdownlist控件的选项后,点击按钮,则系统打印出用户到底选择了哪些dropdownlist控件,并输出它们的值。

    public DataSet PopulateDropDownList()

    {
     SqlConnection myConnection =new SqlConnection(ConfigurationManager.ConnectionStrings["MyDatabase"].ConnectionString);
     SqlDataAdapter ad = new SqlDataAdapter("SELECT * FROM tblPhone", myConnection);
     DataSet ds = new DataSet();
     ad.Fill(ds, "tblPhone");
     return ds;
    }

      上面的代码首先将数据库中tblphone表的数据以dataset的形式返回。然后在页面的itemtemplate中,如下设计:

    <ItemTemplate>
    <asp:DropDownList ID="DropDownList1" runat="server" DataSource="<%# PopulateDropDownList() %>"
    DataTextField="Phone" DataValueField = "PhoneID">
    </asp:DropDownList>
    </ItemTemplate>

      这里注意dropdownlist控件的datasource属性绑定了刚才返回的dataset(调用了populatedropdownlist()方法),并要注意设置好datatextfield和datavaluefield属性。
2#
发表于 2009-12-6 06:05:05 | 只看该作者
加油!在奥斯卡上一连拿了11个奖项的好帖
回复 支持 反对

使用道具 举报

3#
发表于 2010-2-25 04:05:08 | 只看该作者
鉴定完毕!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 00:34 , Processed in 0.094405 second(s), 11 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表