GridView添加小计行

来源:互联网 发布:奉化淘宝司法拍卖网 编辑:程序博客网 时间:2024/05/01 01:33

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
       
       
if (e.Row.RowIndex >= 0)
        {
            sum
+= Convert.ToDouble(e.Row.Cells[6].Text);
        }
       
else if (e.Row.RowType == DataControlRowType.Footer)
        {
            e.Row.Cells[
5].Text = "总薪水为:";
            e.Row.Cells[
6].Text = sum.ToString();
            e.Row.Cells[
3].Text = "平均薪水为:";
            e.Row.Cells[
4].Text = ((int)(sum / GridView1.Rows.Count)).ToString();
           
        }
    }
}