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?
|