This topic is locked

Focus

7/9/2009 6:39:28 AM
ASPRunnerPro General questions
S
santiyeci author

Hi.

Cursor focuse at Username field in login.asp pages.

I like cursor focus at Password Field.

What I do?

Thanks

J
Jane 7/9/2009

Hi,
open generated login.asp file, find this code:

document.forms[0].elements['username'].focus();



and repalce it with this one:

document.forms[0].elements['password'].focus();

S
santiyeci author 7/9/2009

Very thanks.