You can set the default button on your form tag as below code.
<form id="form1" runat="server" defaultbutton="Button1">
OR
you can set the default button on a panel as below.
<asp:Panel ID="panel1" runat="server" DefaultButton="Button1"></asp:Panel>
And you can place your controls on either form or on the panel.