world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
decimal totalAmount = 0; protected void gv_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { totalAmount += Decimal.Parse(DataBinder.Eval(e.Row.DataItem, "Amount").ToString()); } }