Template:InputPreventEnterSubmit

From HTML5 Builder
Jump to: navigation, search

Prevent Enter from Submitting the Form

When you hit the Enter key and the focus is on the InputPreventEnterSubmit control, the form page is submited by default. You can prevent this behavior associating the following code to the client-side OnKeyPress event of the control:

if(event.keyCode == 13)
{
    return false;
}