What is the best solution of defaultButton and "Enter key pressed" for ASP.NET 2.0-3.5 forms?

link|improve this question

50% accept rate
feedback

4 Answers

Just add the "defaultbutton" attribute to the form and set it to the ID of the button you want to be the default.

<form defaultbutton="button1" runat="server">
    <asp:textbox id="textbox1" runat="server"/>
    <asp:button id="button1" text="Button1" runat="server"/>
</form> 

NOTE: This only works in ASP.NET 2.0+

link|improve this answer
If you want to bind enter key to a a specific area of your form, add an additional <asp:Panel id="myNewPanel" runat="server" DefaultButton="sendEmailButton">your buttons and textboxes</asp:Panel> – Anatoly Mironov Sep 2 '11 at 8:40
feedback

Since form submission on hitting the enter key is a part of life with HTML, you'll have to trap the Enter key using javascript and only allow it to go through when it's valid (such as within textareas). Check out http://brennan.offwhite.net/blog/2004/08/04/the-single-form-problem-with-aspnet/ for a good explanation.

link|improve this answer
feedback

I don't want any button to be default, and it hits first one which is submit..

link|improve this answer
feedback

Maybe you need to clarify your question then, because it sounds like that's exactly what you're asking for...

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.