Link to home
Start Free TrialLog in
Avatar of directxBOB
directxBOBFlag for Ireland

asked on

Gridview RowDataBound : Accessing Footer Row

I currently have a Gridview and my RowDataBound has the following:

        For index As Integer = 1 To e.Row.Cells.Count
            If e.Row.Cells(index).Text = " " Then
                e.Row.Cells(index).Text = "0"
            Else

            End If
        Next

In the Else I would like to add : e.Row.Cells(index).Text to the footer row value

So how do I access the footer row?
ASKER CERTIFIED SOLUTION
Avatar of Kaushal Arora
Kaushal Arora
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial