protected void GridView1_RowDataBound1(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { decimal rowTotal = Convert.ToDecimal (DataBinder.Eval(e.Row.DataItem, "tsMonday")); grdTotal = grdTotal + rowTotal; } if (e.Row.RowType == DataControlRowType.Footer) { Label lbl = (Label)e.Row.FindControl("lblTotal"); lbl.Text = grdTotal.ToString("c"); } }
decimal rowTotal = Convert.ToDecimal
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)