I have an ASP.NET application where there's a few ASP.NET buttons and several plain HTML buttons.

Anytime there's a textbox where a user hits enter, the ASP.NET button trys to submit the form.

I know I can change the defaultButton, but I don't want there to be any default button. I just want it so when the user presses enter it doesn't do anything.

I've tried setting defaultButton to blank, but that doesn't seem to work and I can't seem to find the answer anywhere on the web.

What's the code to make this happen?

Thanks.

link|improve this question

60% accept rate
feedback

3 Answers

up vote 7 down vote accepted

You can set the button's UseSubmitBehavior = "false"

link|improve this answer
That does indeed produce the behaviour needed: msdn.microsoft.com/en-us/library/… – Zhaph - Ben Duguid Sep 24 '09 at 18:58
Perfect, thank you. Not sure why I couldn't find that answer through Google. I guess I was just asking the wrong question. – Ryan Smith Sep 24 '09 at 19:09
feedback

use OnKeyDown handler on <body> tag of your page. The javascript code should be:

if (window.event.keyCode == 13) 
{
    event.returnValue=false; 
    event.cancel = true;
}

Using JavaScript to prevent or trigger form submission when ENTER is hit http://www.cs.tut.fi/~jkorpela/forms/enter.html

link|improve this answer
feedback

Here is what I used to fix this problem.

<form runat="server" defaultbutton="DoNothing">
        <asp:Button ID="DoNothing" runat="server" Enabled="false" style="display: none;" />
link|improve this answer
Nice hack! I had an asp.net imagebutton in my masterpage that kept submitting whenever the enter button was clicked on any page. However, this little trick fixed the problem. – Jagd Feb 2 '11 at 19:48
feedback

Your Answer

 
or
required, but never shown

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