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.
|
feedback
|
|
You can try Button.UseSubmitBehavior, or disable the submit of the form using Javascript. | |||
|
feedback
|
|
The solution for me was this:
on every textbox and radiobuttons on the form. | |||
|
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. | |||
|
feedback
|