i.e at the moment I am adding a footer row to my gridview as follows
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 How can I add more footer rows i.e. Total Discount, Total Saved etc likewise as above