Joel Holder

Math, coding, philosophy, art, and other things that interest me

View on GitHub
2 December 2008

AutoFocus the UserName field of an ASP.NET Login Control

by Joel Holder

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..

tags: