H
Hilton
Mark said:Maybe for something like nested repeaters, but not in this particular
instance...
I was referring to the OP's code:
// type 2 more VB like
if (((GridViewRow)e.Row).FindControl("lbl_One1") != null)
{
Label lbl =
(Label)((GridViewRow)e.Row).FindControl("lbl_Two2");
lbl.Text = "AND Yes!";
}
Hilton