J
JohnE
I have a masterpage that has a row of linkbuttons on it. These linkbuttons
open up the different applications that are being developed. The number of
linkbuttons will continue to grow from the current 3 to at least 7 (possibly
more). The webapps are using a nested master page inheriting from the master
page which includes the css so the look and feel to the users is consistent.
The website opens to a specific webapp (a type of message center) and the
others can then be opened by using one of the linkbuttons. Each webapp opens
in its own window (Target="_blank"). When the webapp does open, the row of
linkbuttons show on the masterpage. The preference is to hide them when a
webapp opens so the user is not able to use them. This would only be for the
open webapp. Is there a way to hide the linkbuttons on the masterpage when
the webapps are opened up from the linkbuttons?
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
open up the different applications that are being developed. The number of
linkbuttons will continue to grow from the current 3 to at least 7 (possibly
more). The webapps are using a nested master page inheriting from the master
page which includes the css so the look and feel to the users is consistent.
The website opens to a specific webapp (a type of message center) and the
others can then be opened by using one of the linkbuttons. Each webapp opens
in its own window (Target="_blank"). When the webapp does open, the row of
linkbuttons show on the masterpage. The preference is to hide them when a
webapp opens so the user is not able to use them. This would only be for the
open webapp. Is there a way to hide the linkbuttons on the masterpage when
the webapps are opened up from the linkbuttons?
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