摘要: DataSet ds = dbSys.ExecuteDataSet(QueryString()); DataTable dt = ds.Tables[0]; //添加统计行 DataRow newRow = dt.NewRow(); newRow[dt.Columns[1].ColumnName] = "Grand Total"; double total = 0; string totalName = strin... 阅读全文
posted @ 2012-08-17 16:21 刀叨 阅读(662) 评论(0) 推荐(0)