I'm using Visual Studio 2005 and C#
So my problem is that the code i run below does work on page that doesn't use Master Page but once i use Master Page it just doesn't seem to be able to work.
Is there anything i need to add in order for this code to work on web pages that has Maste Page?
string defineImageButton = "test1ImageButton";
ShowImageButton = (
ImageButton)this.FindControl(defineImageButton);
ShowImageButton.Visible = false;