asp.net Gridview里添加汇总行
程序员文章站
2024-02-02 23:48:40
if (e.row.rowtype == datacontrolrowtype.datarow) { totalcash += convert.todecimal(data...
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;
}
上一篇: 怎么查看php是ts还是nts
推荐阅读
-
asp.net Gridview里添加汇总行
-
ASP.NET中为GridView添加删除提示框的方法
-
在ASP.NET 2.0中操作数据之二十八:GridView里的Button
-
在ASP.NET 2.0中操作数据之三十九:在DataList的编辑界面里添加验证控件
-
在ASP.NET 2.0中操作数据之四十九:为GridView控件添加RadioButton
-
在ASP.NET 2.0中操作数据之五十:为GridView控件添加Checkbox
-
在ASP.NET 2.0中操作数据之六十四:GridView批量添加数据
-
在ASP.NET 2.0中操作数据之二十八:GridView里的Button
-
在ASP.NET 2.0中操作数据之三十九:在DataList的编辑界面里添加验证控件
-
在ASP.NET 2.0中操作数据之五十:为GridView控件添加Checkbox