1 2 3 4 5 6 7 8 9 10 11 12
| Protected Sub test(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
' S'assurer que la ligne est bien une ligne Data (Pas entête, pied etc...)
If e.Row.RowType = DataControlRowType.DataRow Then
If e.Row.DataItem("acceptation_societer") = True Then
e.Row.BackColor = Drawing.Color.Aqua
CType(e.Row.Cells(5).Controls(0), ImageButton).ImageUrl = "~/App_Themes/Images/liste/poubelle.gif"
Else
e.Row.BackColor = Drawing.Color.White
CType(e.Row.Cells(5).Controls(0), ImageButton).ImageUrl = "~/App_Themes/Images/liste/liste.gif"
End If
End If
End Sub |