Is there any easier way of using the code:
For Each gvRow As GridViewRow In gvGridviewExample.Rows
If gvRow.RowType = DataControlRowType.DataRow Then
'Do Something
End If
Next
Such as when using a iEnumerable you theoritically (psuedo code style) add a:
gvGridviewExample.Where(Function(chR) chR.Row = DataRow)
I just wondered if there is an easier way of coding this out?
Thanks,
Firstcape