G Guest Mar 20, 2004 #1 Hi Can anyone tell me how to set the focus on a web page to a particular control Thanks
C Cor Mar 20, 2004 #2 Hi Julian, I only know it in HTML (javascript) \\\ <INPUT tabindex="1" id="fieldid" type="text" size="27"> //This should be the last rows in your html aspx file <script language="JavaScript"> fieldid.focus(); </script> </HTML> // I hope this helps a little bit? Cor
Hi Julian, I only know it in HTML (javascript) \\\ <INPUT tabindex="1" id="fieldid" type="text" size="27"> //This should be the last rows in your html aspx file <script language="JavaScript"> fieldid.focus(); </script> </HTML> // I hope this helps a little bit? Cor