You can simply write a
JS function and pass the textbox id to which you want to move to, e.g. like below:
function MoveOnClick(objId)
{
if (event.keyCode == "13")
document.getElementById(objId).focus();
}
Call it like this:
<input type="text" id="txtFirst" onkeydown=MoveOnClick('txtSecond')>
Regards
Mike
Don't expect too much, too soon.