将GridView中的数据导入到EXCEL中!解决方案

ContractedBlock.gif ExpandedBlockStart.gif Code
 1    protected void Button1_Click(object sender, EventArgs e)
 2ExpandedBlockStart.gifContractedBlock.gif    {
 3        Response.Clear();
 4        this.GridView1.Columns[0].Visible = false;  //第一列是复选框,将其屏蔽
 5        this.GridView1.FooterRow.Visible = false; //屏蔽脚注
 6        for (int i = 0; i < this.GridView1.Rows.Count; i++)
 7ExpandedSubBlockStart.gifContractedSubBlock.gif        {
 8            if (!((CheckBox)this.GridView1.Rows[i].FindControl("CheckBox2")).Checked)
 9ExpandedSubBlockStart.gifContractedSubBlock.gif            {
10                this.GridView1.Rows[i].Visible = false;  //如果该行未被选中,屏蔽!
11            }

12        }

13
14        this.GridView1.BottomPagerRow.Visible = false; //把页数,也屏蔽掉 就是 1 2 3 4页    
15
16
17        Response.Buffer = true;
18        Response.Charset = "GB2312";
19        Response.AppendHeader("Content-Disposition""attachment;filename=Exclefile.xls");
20        // 如果设置为 GetEncoding("GB2312");导出的文件将会出现乱码!!!
21        Response.ContentEncoding = System.Text.Encoding.UTF7;
22        Response.ContentType = "application/ms-excel";//设置输出文件类型为excel文件。 
23        System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
24        System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
25        this.GridView1.RenderControl(oHtmlTextWriter);
26        Response.Output.Write(oStringWriter.ToString());
27        Response.Flush();
28        Response.End();
29    }

30//下面这个函数一定要有的,否则会报错.
31    public override void VerifyRenderingInServerForm(Control control)
32ExpandedBlockStart.gifContractedBlock.gif    { }

 

前台页面:

 

ContractedBlock.gif ExpandedBlockStart.gif Code
 1//全选按钮代码
 2    protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
 3ExpandedBlockStart.gifContractedBlock.gif    {
 4        if (((CheckBox)sender).Checked)
 5ExpandedSubBlockStart.gifContractedSubBlock.gif        {
 6            for (int i = 0; i < GridView1.Rows.Count; i++)
 7ExpandedSubBlockStart.gifContractedSubBlock.gif            {
 8                ((CheckBox)GridView1.Rows[i].FindControl("CheckBox2")).Checked = true;
 9            }

10        }

11        else
12ExpandedSubBlockStart.gifContractedSubBlock.gif        {
13            for (int i = 0; i < GridView1.Rows.Count; i++)
14ExpandedSubBlockStart.gifContractedSubBlock.gif            {
15                ((CheckBox)GridView1.Rows[i].FindControl("CheckBox2")).Checked = false;
16            }

17        }

18    }

转载于:https://www.cnblogs.com/flysnow-z/archive/2008/08/07/1263104.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值