24/09/2008, 16:18
|
| | Fecha de Ingreso: junio-2007
Mensajes: 253
Antigüedad: 17 años, 6 meses Puntos: 0 | |
Respuesta: Hacer referencia a enlace en gridview. Gracias por tu respuesta diego ya habia implementado algo similar pero no me funiona, pero date cuenta que me templatefield no tiene un hyperlink sino un enlace de html <a href="">
Protected Sub gvGestion_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvGestion.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
If Convert.ToString(DataBinder.Eval(e.Row.DataItem, "estado")) = "R" Then
e.Row.CssClass = "resaltarfila"
For Each row As GridViewRow In gvGestion.Rows
Dim lnkReprog As HtmlLink = CType(row.FindControl("lnkReprog"), HtmlLink)
lnkReprog.Visible = False
Next
End If
End If
End Sub
por alguna razón no ingresar al for y me sigue presentando el enlace.
Gracias espero alguien me peuda ayudar con esto lo necesito de verdad. |