Este Metodo trabaja de registro a la vez por eso no te resulta el for
Protected Sub gvGestion_RowDataBound(ByVal sender As Object, ByVal e As
For Each row As GridViewRow In gvGestion.Rows
Cita:
Iniciado por Rodro 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.