Oka tengo esto.
Código:
For Each row2 As GridViewRow In grid_tareas.Rows
fecha2 = CStr(row2.Cells(15).Text.ToString)
If (fecha2.Length < 7) Then
row2.Cells(5).Enabled = False
row2.Cells(5).BackColor = Drawing.Color.DarkRed
End if
Next
Lo probe con un ButtonType="Button" y ahí si funciona. pero en un ButtonType="Image" no funciona??
Código:
<asp:ButtonField ButtonType="Button" CommandName="ver" Text="Ver"/>
<asp:ButtonField ButtonType="Image" CommandName="descargar" ImageUrl="~/Imagenes/descargar.png" />
Saludos.