vote up 0 vote down star
1

I have 3 buttons in a form. One of them is the submit button. How can I make it the default button to be clicked when I press the enter key. Is there a property for this?

flag

54% accept rate

3 Answers

vote up 4 vote down check

There is a property for the form: defaultbutton.

<form runat="server" defaultbutton="myButton">
...
</form>

It is first time implemented in ASP.NET 2.0.

link|flag
vote up 1 vote down

Or you can do it in code - Page_load:

Page.Form.DefaultButton = btnSearch.UniqueID;

Whenever you press enter the btnSerach control will be used as default.

link|flag
vote up 4 vote down

Another helpful tip is that you can set the default button on asp:panel's too.

link|flag
1  
Thank you. Thank you. Thank you. It's been a horrific morning of debugging and now I'd like to have your children! – teknohippy Feb 25 at 11:22
Sounds painful :) – qui Feb 25 at 15:31
Wow, this saved me a ton of time. Thanks! – Matthew Nov 24 at 16:01

Your Answer

Get an OpenID
or

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