Redierct to another page when we press on Enter Key instead of Submit button
-
HI I had two textboxes username and password and a button(Submit). Now if i press Enter Key from Keyboard instead of clicking on Submit button the page should be automatically redirected to another page.......... Please some one help me.......... Thanks in Advance
-
HI I had two textboxes username and password and a button(Submit). Now if i press Enter Key from Keyboard instead of clicking on Submit button the page should be automatically redirected to another page.......... Please some one help me.......... Thanks in Advance
in the password text box u write this javascript so that it will automatically calls the submit button when enter key is pressed... go to source code and in password text box u write onkeydown ="return submitClick(window.event)" in javascript function suubmitClic() { if(event.keycode==13)//enter key asci code.. { document.getElementbyid("sumit button name.ClientID").click(); } }