Hi lakshmi_annayappa
Place a client side javascript
onkeypress handler for each textbox and check code of pressed key with key code of 'Enter' key (number 13). If it is, then make focus to next control on your page.
It should be something like below :
function onkeypressHandler()
{
if(event.keyCode == 13)
{
// Enter has been pressed
getNextElement(event.scrElement).focus();
}
}
getNextElement() could be implemented as a general method that accepts an element as an input parameter and returns an element that it's tabIndex property is one more than input element.
Also take a look at this topic :
http://www.thescripts.com/forum/thread503195.html
Ehsan Zaery Moghaddam