Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hi.Cursor focuse at Username field in login.asp pages.I like cursor focus at Password Field.What I do?Thanks
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();
Very thanks.