GridView last row
Hejjeg skal have fat i sidste række i en gridview !
jeg har følgende kode
...
Dim ib As New ImageButton
ib = e.Row.Cells(4).FindControl("Button3") ' arrow down
Dim ib2 As New ImageButton
ib2 = e.Row.Cells(4).FindControl("Button4") ' arrow up
If GridView1.Rows.Count = 0 Then
ib.Visible = False
Else
ib.Visible = True
End If
If ? Then
ib2.ImageUrl = False
Else
ib2.Visible = True
End If
...
Kan i forslå hvad der skal stå i sidste if sætning (der hvor der er ? nu)