I am using Visual Basic. I have a label in the master page. From the click of a button (that's on another page), I want to write code that will change the text property of this label in the master page.
I have a master page called Site.Master and all I want to do is something like:
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Me.Master.Page.Label.Text = "new text" 'Of course this NOT right.
End Sub
(What I've placed inside there is just pseudo code.)