在Button的点击事件中怎么获取Gridview中某一列所有值的和
1个回答
2013-11-09
展开全部
其实计算数据源里某一列的所有值之和更容易。比如DataView dv;
int total = 0;
foreach (DataRow dr in dv.Table.Rows)
{
total += Convert.ToInt32(dr[0]);
} 只要循环数据源的行数就行了。
int total = 0;
foreach (DataRow dr in dv.Table.Rows)
{
total += Convert.ToInt32(dr[0]);
} 只要循环数据源的行数就行了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询