D
Dot Net Daddy
Hello,
Is there a way to access the invisible cells in the GridView from
code-behind.
Been trying this, but isn't working
For i = 0 To GridView1.Rows.Count - 1
If GridView1.Rows(i).Cells(1).Text.Equals("Y") Then
GridView1.Rows(i).Cells(0).Font.Bold = False
End If
Next
Is there a way to access the invisible cells in the GridView from
code-behind.
Been trying this, but isn't working
For i = 0 To GridView1.Rows.Count - 1
If GridView1.Rows(i).Cells(1).Text.Equals("Y") Then
GridView1.Rows(i).Cells(0).Font.Bold = False
End If
Next