Set Focus on a web page (ASP.NET)

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
Back
Top