When press Enter move to next field?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi! i want ....... when i press enter on a textbox cursor move to next textbox help me with code...
fmlove wrote:
when i press enter on a textbox cursor move to next textbox
Ascii value for enter key is 13. You need to write
OnKeyDown
javascript event for your textbox and call function. Checkevent.KeyCode
is 13, if yes usecontrolname.focus()
to set focus to other textbox.