I have tried the following line but it does not seem to work, or I'm putting
it in the wrong place.
Page.Master.FindControl("hlnkProteus").Visible = false;
Thanks for the help on this. May need some specifics on this as my asp.net
is not that proficient.
... John
in c#
LinkButton lnkBtnActivate = (LinkButton)Master.FindControl("lnkBtnActivate");
lnkBtnActivate.Visible = false;
in vb it would be
Dim lnkBtnActivate As LinkButton =
DirectCast(Master.FindControl("lnkBtnActivate"), LinkButton)
lnkBtnActivate.Visible = False
--
Abdul Sami
... John
1: to hide masterpage's masterpage control
Master.Master.FindControl("HyperLink1").Visible = false;
2: onclick of linkbutton let it open a new application and call a server
side or javascript function to hide the linkbutton you want to hide for the
current page
3: you can call a javascript function of parent window from child window by
window.opener.functionname()
and from there you can show hide the things