This Blog show you how to access Controls of Masterpage.
write this code inside child page of masterpage to access a control.
Label lblmsg;
lblmsg = (Label)Master.FindControl("lblTitle");
lblmsg.Text = "I love my india";