So far, this is due to a keystroke.
function chkenter()
{
e = event.keyCode;
if (e == 13)
{
event.keyCode = 9;
return false;
}
}
but even if I set the key code to 9, it does not go to the next control. How can i do this? I work at Asp Classic.
Ultimately, I want to focus in order to move on to the next element. However, the next identifier of an element is not completely determined, because its identifier has been set in a loop, but at the moment it exists. How to set focus to the next control is a question.
source
share