nettiers and gridview
am 08.04.2008 05:45:04 von Gabriel Pineda
hi, i have already binded a gridview and the data.
in my aspx i have something like that:
Select
src='App_Themes/AdXToDefault/Images/16x16/flag.png'>
and now what i want to do is to show or to not show the hyperlink depending
on the value of another field (like 'active' or something like that).
how can i do that?
thank you!
Re: nettiers and gridview
am 08.04.2008 17:41:02 von dlongnecker
In your code-behind, I'd recommend adding a RowDataBound event that sets
the Visible property of your SelectLink to false based on whatever column/field
you're interested in. The e.Row.Cells[index] would be based on the column
order of your grid.
ex:
protected void ExampleGrid_RowDataBound(object sender, GridViewRowEventArgs
e)
{
if (e.Row.Cells[3].Text == "Inactive")
{
((HyperLink) e.Row.FindControl("SelectLink")).Visible = false;
}
}
HTH.
-dl
--
David R. Longnecker
http://blog.tiredstudent.com
> hi, i have already binded a gridview and the data. in my aspx i have
> something like that:
> Select
>
>
>
>
> src='App_Themes/AdXToDefault/Images/16x16/flag.png'>
>
>
>
> and now what i want to do is to show or to not show the hyperlink
> depending on the value of another field (like 'active' or something
> like that).
>
> how can i do that?
> thank you!