How about including the path to your master page at the top of your child page
<%@ MasterType VirtualPath="~/MasterPages/PublicUI.Master" %>
Which will allow you to directly call code from your master page code behind.
Then from your master page code behind you could make a property return your control, or make a method on the master page get your control etc.
public Label SomethingLabel
{
get { return lblSomething; }
}
Refers to
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server" >
<asp:Label ID="lblSomething" runat="server" />
</asp:ContentPlaceHolder>
Usage:
Master.SomethingLabel.Text = "some text";
