ASP.NET Ajout de Plusieurs pieds de lignes à Gridview

je.e pour le moment, je suis en ajoutant une ligne de pied de page de mon gridview comme suit

    Protected Sub gvShoppingCart_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs) Handles gvShoppingCart.RowDataBound
    ' If we are binding the footer row, let's add in our total
    If e.Row.RowType = DataControlRowType.Footer Then
        e.Row.Cells(5).Text = "<strong>Total Cost:</strong>"
        e.Row.Cells(6).Text = ShoppingCart.Instance.GetSubTotal().ToString("C")
    End If
End Sub

Comment puis-je ajouter plus de lignes de pied de page Total de Réduction, le Total Enregistré etc de la même manière que ci-dessus

OriginalL'auteur StevieB | 2011-08-16