vote up 0 vote down star

What is the best way to implement mutliple Default Buttons on a ASP.NET Webform?

I have what I think is a pretty standard page. There is a login area with user/pass field and a login button. Then elsewhere on the same page there is a single search field with a search button.

flag

76% accept rate
Pedantry: *multiple Please proofread your posts. At the very least, your subjects. – Rich B Sep 16 '08 at 13:25

3 Answers

vote up 5 vote down

asp:Panel has a property named DefaultButton. You just need to encapsulate your markup portions with appropriate panels and set the default buttons for each.

link|flag
What I had in mind, but implemented properly. Well done. – Raithlin Sep 16 '08 at 13:25
vote up 1 vote down

Capture the enter key press for each area of the screen and then fire the corresponding button's click even.

link|flag
vote up 1 vote down

Use a helper function like this one to tie the textboxes to their associated buttons.

link|flag

Your Answer

Get an OpenID
or

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