È necessario utilizzare gli eventi di associazione dati per sommare i valori. Vedi questo esempio e adattarti alle tue esigenze:
private Decimal OrderTotal;
protected void GridView1_DataBinding(object sender, EventArgs e)
{
OrderTotal = 0.0M;
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//Keep adding the subtotal here
OrderTotal += Subtotal;
}
}
protected void GridView1_DataBound(object sender, EventArgs e)
{
//Set a control with the total sum
LabelOrderTotal.Text = OrderTotal.ToString("C");
}
Fondamentalmente continui ad aggiungere i valori nel RowDataBound
evento e nel DataBound
evento si imposta un'etichetta con la somma totale. In alternativa, puoi scorrere la griglia nel DataBound
evento e somma tutto.