I have a master page where in I have a link button. In one of the content pages, I need to hide the linkbutton and replace with image button. The click event handler for ima
If your Master Page is MyMaster, make a property like this:
Public Shadows ReadOnly Property Master() As MyMaster
Get
Return CType(MyBase.Master, MyMaster)
End Get
End Property
Then whatever you want to access in the Master Page, make sure it's Public, and you will be able to access it via:
Master.xxxx