Move cursor on next control on complete filled
Move cursor on next control on complete filled < html xmlns ="http://www.w3.org/1999/xhtml"> < head runat ="server"> < title ></ title > < script type ="text/javascript"> function ChangeControl(CurrentControl, NextControl) { debugger ; if (CurrentControl.value.length >= CurrentControl.maxLength) { document.getElementById(NextControl).focus(); } } </ script > < style type ="text/css"> .txtwidth ...