码迷,mamicode.com
首页 > 其他好文 > 详细

给GridView增加求和行

时间:2015-09-23 16:26:33      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

1、在WebForm窗体中,设置GridView的ShowFooter="True"

2、在后台代码中

private int jhrs=0,ybrs=0;//定义变量

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)

{

if (e.Row.RowIndex >= 0)

{

jhrs += Convert.ToInt16(e.Row.Cells[4].Text);

ybrs += Convert.ToInt16(e.Row.Cells[5].Text);

}

else if (e.Row.RowType == DataControlRowType.Footer)

{

e.Row.Cells[0].Text = "合计";

e.Row.Cells[4].Text = jhrs.ToString();

e.Row.Cells[5].Text = ybrs.ToString();

}

}

技术分享

 

给GridView增加求和行

标签:

原文地址:http://www.cnblogs.com/xusy/p/4832448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!