Oct 25, 2011

How to set default focus of TextBox in ASP.NET C# ?

On page load event we have to set the Focus of that TextBox.

Example:-
protected void Page_Load(object sender, EventArgs e)
{
        TextBox1.Focus();
}

No comments: