Master Page & Find Control

How to find a control on a Master Page
ContentPlaceHolder cph = this.Form.FindControl(“ContentPlaceHolder1″) as ContentPlaceHolder;

TextBox ctrlInput = (TextBox)cph.FindControl(“mycontrol”);

About Brad Crump