I have a aspx-page with several textboxes and buttons. However, when the cursor is in a textbox, one of the buttons is still "in focus". So when I hit the Enter-key the button is pressed. What I want is to disable the ability to trigger buttons with the Enter-key, or at least when the cursor is in a textbox.

link|improve this question

56% accept rate
feedback

3 Answers

You can try Button.UseSubmitBehavior, or disable the submit of the form using Javascript.

link|improve this answer
Is there a similar ImageButton.UseSubmitBehavior? – hightow Jul 11 '11 at 13:46
feedback
up vote 1 down vote accepted

The solution for me was this:

TextBox.Attributes.Add("onkeypress, "return event.keyCode!=13");

on every textbox and radiobuttons on the form.

link|improve this answer
feedback

Set of the focus on the textbox where the curson is when the page is loaded - window.onLoad() method.

If its the only submit button in you form then it will be triggered automatically when you press enter. To disable it , you have to mark its as disabled.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.