i have a gridview width a boundfield:

<asp:BoundField DataField="Nome" HeaderText="Nome" SortExpression="Nome"  />

i want set the visible parameter of this by a condition in page_load method.

is possible?

thanks

link|improve this question

68% accept rate
feedback

1 Answer

up vote 1 down vote accepted

After calling EnsureChildControls(), you will be able to iterate over the GridViewRows and use FindControl to pick out this field (assuming you set an ID and runat="server").

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.