19/08/2011, 07:37
|
| | | Fecha de Ingreso: julio-2011 Ubicación: Coahuila
Mensajes: 320
Antigüedad: 13 años, 6 meses Puntos: 8 | |
Respuesta: System.Web.UI.WebControls.ImageButton este codigo puede jalar
Dim imagen As System.Web.UI.WebControls.Image = DirectCast(e.Row.FindControl("imgestado"), System.Web.UI.WebControls.Image)
como podria hacer que jalara esta parte e.Row.FindControl("imgestado")
como podria hacer un areferencia al renglon del datagridview porque esto
jala biene en
Private Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
Dim KeyID As String = GridView3.DataKeys(e.Row.RowIndex).Value.ToString( )
Dim imagen As System.Web.UI.WebControls.Image = DirectCast(e.Row.FindControl("imgestado"), System.Web.UI.WebControls.Image)
imagen.ImageUrl = "GreenCircle5.jpg"
End If
End Sub |