asp.net Gridview里添加汇总行_asp.net教程-查字典教程网
asp.net Gridview里添加汇总行
asp.net Gridview里添加汇总行
发布时间:2016-12-29 来源:查字典编辑
摘要:if(e.Row.RowType==DataControlRowType.DataRow){totalcash+=Convert.ToDec...

if (e.Row.RowType == DataControlRowType.DataRow)

{

totalcash += Convert.ToDecimal(DataBinder.Eval(e.Row.DataItem, "cash"));

totalunbalanced += Convert.ToDecimal(DataBinder.Eval(e.Row.DataItem, "unbalanced"));

totalsettled += Convert.ToDecimal(DataBinder.Eval(e.Row.DataItem, "settled"));

}

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

{

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

e.Row.Cells[1].Text = totalcash.ToString("0.00");

e.Row.Cells[2].Text = totalunbalanced.ToString("0.00");

e.Row.Cells[3].Text = totalsettled.ToString("0.00");

e.Row.Font.Bold = true;

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新asp.net教程学习
    热门asp.net教程学习
    编程开发子分类