IMPROVE. RadDropDownList - calling the Focus method when DropDownStyle = DropDown does not focus the inner text box
Also, calling focus of Control will not focus the text box: ((Control)ddl).Focus()
Workaround: focus the inner text box
radDropDownList1.DropDownListElement.TextBox.Focus();