15/02/2006, 03:01
|
| | Fecha de Ingreso: junio-2005
Mensajes: 149
Antigüedad: 19 años, 7 meses Puntos: 0 | |
Esto está bastante mejor pero no consigo acertar con la celda que busco. Si hay 8 seria la septima, he probado dandole a la variable a el valor de cada una de las celdas pero nunca tiene contenido.¿Que hago mal?
Private Sub MyList_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles MyList.ItemDataBound
Dim aa As String
If e.Item.ItemType = ListItemType.Item Or _
e.Item.ItemType = ListItemType.AlternatingItem Then
aa = CType(e.Item.Cells(6).Text, String)
If CType(e.Item.Cells(1).Text, String) = "texto a" Then
e.Item.Cells(1).BackColor = Color.Red
e.Item.Cells(1).Font.Bold = True
ElseIf CType(e.Item.Cells(6).Text, String) = "texto b" Then
e.Item.Cells(1).BackColor = Color.Red
e.Item.Cells(1).Font.Bold = True
ElseIf CType(e.Item.Cells(6).Text, String) = "texto c" Then
e.Item.Cells(1).BackColor = Color.Red
e.Item.Cells(1).Font.Bold = True
End If
End If
End Sub
Saludos!!! |