G Guest Aug 3, 2004 #1 Just wondering if there is a way to give a control focus when the page loads, for example so the user could start typing in a text box before clicking on it? Thanks,
Just wondering if there is a way to give a control focus when the page loads, for example so the user could start typing in a text box before clicking on it? Thanks,
E Eliyahu Goldin Aug 3, 2004 #2 Paul, You can do it in a javascript. Setup an onload event for the <body> tag. In the event handler put a line myForm.myControl.focus(); Eliyahu Paul said: Just wondering if there is a way to give a control focus when the page Click to expand... loads, for example so the user could start typing in a text box before clicking on it?
Paul, You can do it in a javascript. Setup an onload event for the <body> tag. In the event handler put a line myForm.myControl.focus(); Eliyahu Paul said: Just wondering if there is a way to give a control focus when the page Click to expand... loads, for example so the user could start typing in a text box before clicking on it?
V veera Aug 7, 2004 #3 Is it possible to give control focus using Asp.net code?? Paul said: Just wondering if there is a way to give a control focus when the page Click to expand... loads, for example so the user could start typing in a text box before clicking on it?
Is it possible to give control focus using Asp.net code?? Paul said: Just wondering if there is a way to give a control focus when the page Click to expand... loads, for example so the user could start typing in a text box before clicking on it?
T tonymjohn Aug 7, 2004 #4 See this article http://www.dotnetspider.com/Technology/KBPages/222.asp - tonymjoh