Set focus on textbox

  • Thread starter Thread starter Saifee
  • Start date Start date
S

Saifee

Hello,
How do i set focus on text box or any web control in my
aspx.vb page..pls help
 
thanx for the script worked fine, but then how do i set
the focus on a control in run time
say if the user do not enter a value in a textbox,
i dsiplay a message n then have to set the focus to the
textbox
 
Here is an example...

<html>
<body>
<form runat="server">
<asp:TextBox ID="TextBox1" RunAt="server" /><br>
<asp:TextBox ID="TextBox2" RunAt="server" /><br>
</form>
</body>
</html>

<script language="javascript">
document.forms[0].TextBox1.focus ();
</script>
 
<asp:placeholder id=script1 runat=server Visible=False
EnableViewState=False>
<script>
alert('please input something');
document.all.TextBox1.focus();
</script>
</asp:placeholder>
</form>

to enable the script once , using C#:

placeholder.Visible=true;
 
Back
Top