S Saifee Dec 8, 2003 #1 Hello, How do i set focus on text box or any web control in my aspx.vb page..pls help
S Saifee Dec 8, 2003 #3 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
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
V vetri Dec 8, 2003 #4 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>
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>
L lostinet Dec 8, 2003 #5 <asplaceholder id=script1 runat=server Visible=False EnableViewState=False> <script> alert('please input something'); document.all.TextBox1.focus(); </script> </asplaceholder> </form> to enable the script once , using C#: placeholder.Visible=true;
<asplaceholder id=script1 runat=server Visible=False EnableViewState=False> <script> alert('please input something'); document.all.TextBox1.focus(); </script> </asplaceholder> </form> to enable the script once , using C#: placeholder.Visible=true;