26/04/2010, 07:12
|
| | | Fecha de Ingreso: julio-2007 Ubicación: Montevideo (Uruguay)
Mensajes: 919
Antigüedad: 17 años, 3 meses Puntos: 13 | |
Respuesta: Personalizar filas gridview Hola, tenes que hacerlo en el evento DataBound......
Elimina el For i as...... y hace el DataBind solamente en tu evento Pedidos. Protected Sub gvpedido_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvpedido.RowDataBound
If (e.Row.RowType <> ListItemType.Header And e.Row.RowType <> ListItemType.Pager) Then
If e.Row.Cells(1).Text = "True" Then
e.Row.BackColor = Color.GreenYellow
Else
e.Row.BackColor = Color.Red
End If
End If
End Sub
Saludos.
__________________ Marcelo Davila. :. En Ignorante te conviertes al no preguntar, el que pregunta se nutre... :. |