Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to set focus on textbox after auto postback. My textbox is in asp:panel so how can i set focus on textbox
Posted
Comments
Kaushikhalvadiya 25-Apr-13 13:11pm    
using textboxname.Focus(); method.

1 solution

Refer:
MSDN: How to: Set Focus on ASP.NET Web Server Controls[^]
MSDN: Page.SetFocus Method (Control)[^]

Server side:
C#
SetFocus(thisTextBox);


Client side:
JavaScript
document.getElementById("thisTextBox").focus();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900