Hi,<BR><BR>In "good old" .asp, we had .focus to set the focus to a control on the page. <BR><BR>How do you do this in .aspx?<BR><BR>TIA, Mark<BR>You need to use some javascript.<BR><BR><script language="Javascript" runat="client"><BR>InitDoc() = document.onload;<BR><BR>InitDoc() {<BR> document.all[<insert your control name here>].focus();<BR>}<BR></script><BR>