In the following code, the textbox being searched for is found but focus doesn't set on it. Any ideas?
Control ctl = LoadControl("~/Controls/BaseControls/Profile.ascx");
if (ctl !=null)
{
TextBox txt = Helpers.FindChild(ctl, "uxFirstName") as TextBox;
if (txt != null)
txt.Focus();
}
Go to the complete details ...