decimal total = 0; protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { total += Convert.ToDecimal(DataBinder.Eval(e.Row.DataItem, "calc")); } lblTotal.Text = total.ToString(); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)