How can the focus be set to a specific control when a Web form loads?
Rangoli
For doing that you would have to use some java script .
Open the HTML view of your application and write some javascript code before the end of the body tag.
document.getElementById(“textBox2”).focus( );