Suppose Master Page contains a Label Control whose
id is labelMaster in it. Now in the aspx page you will write.
Label labelChild = (Label)Master.FindControl("labelMaster");
labelChild.Text = "Just Checking";
labelChild.BackColor = System.Drawing.Color.Red;
labelChildForeColor = System.Drawing.Color.Blue;
labelChild.Font.Bold = true;