AutoFocus the UserName field of an ASP.NET Login Control

Even if you’re not using a templated version of the Login Control, the builtin TextBox for username entry can be targeted like this:

protected void Page_Load(object sender, EventArgs e){

           SetFocus(Login1.FindControl("UserName"));

SetFocus is in the Page class.

Easy joy..

Leave a comment