Tuesday 3 March 2009

DefaultButton - Deal with users hitting ENTER on your forms

Developers tend to assume that users will be always clicking on the buttons to submit forms. Is it a valid assumption? Unfortunately not always ... the simplest example can be quick search, a common component on many sites.


What if user simply hit ENTER instead of clicking on the button next to the text box? Because our button wasn't clicked then of course even handler for Click event won't be invoked. The problem is that users expect that hitting Enter will correctly submit the form. So what can we do?

HtmlForm and Panel classes have a property called DefaultButton. Thanks to this property we can address the issue. First lets check the HtmlForm.DefaultButton property, here is how it can be used:

   1:  protected void Page_Load(object sender, EventArgs e)
   2:  {
   3:      Page.Form.DefaultButton = btnSearch.UniqueID;
   4:  }

That's all what is needed to make sure that post back generated by pressing the ENTER key will be "associated" with the button btnSearch. That is an improvement, but there is another problem to solve, check contact us page:

This is slightly more complex situation as here we would like to have Send button to be the default button for HtmlForm. So what about quick search? The following piece of code will solve it:

   1:  <asp:panel id="pnlSearch" runat="server" defaultbutton="btnSearchButton">
   2:      <asp:textbox id="txbSearchQuery" runat="server" validationgroup="search" maxlength="50" />
   3:      <asp:Button id="btnSearchButton" runat="server" text="Search" validationgroup="search" />
   4:  </asp:panel>

By surrounding the quick search controls with ASP.NET panel we can define for that group default button, different default button then the one on HtmlForm. In this simple way it's possible to define arbitrary number of small areas on the page with custom default button.

Another thing worth noticing is that defining unique validation group for all functionally related groups of controls is considered as a good practice. This way you can be sure that submitting one group won't trigger validation somewhere else.

I know that those are not a life-changing features but still I find them very useful, it's good to dust off basics like this from time to time.

10 comments:

Anonymous said...

Well best is to not wrap the whole page with a .net webform. Get rid of it and use standard html forms.

Blotko said...

I see what you mean ... switching to ASP.NET MVC, isn't it?

It's true though that with standard html forms you won't have this kind of problem.

Anonymous said...

No you don´t have to use ASP.NET MVC.
But all webcontrols wont work without the webform. But those controls that wont work renders bad code anyway.

Blotko said...

If I understand correctly then you are suggesting staying with ASP.NET WebForms and not using any webcontrols but plain HTML right?

I think that would slow down development significantly by forcing you to manually access post back data isn't it? Also event handling in ASP.NET WebForms is quite convenient I think.

Anonymous said...

This might work in IE, but in Firefox you need to use some custom javascript-code or something similiar when you have multiple submitbuttons. :(

Anonymous said...

Yes. Most of the webcontrols still works without the webform. How often do you post back data from a corporate website without using EPiServer's xforms?

Blotko said...

on a corporate website not that often :)

Unknown said...

Thanks Marek i got the solution from your blog.i really tired this problem and finally from the google i got it you blog and fixed it.

Thanks again

Unknown said...

It’s laborious to find knowledgeable folks on this subject, however you sound like you recognize what you’re speaking about! Thanks best online casinos

AlanBarlow said...

Trying this for myself, let's see what I get.
custom logo