If I correctly understand what you are trying to do, you may want to try using
<form id="form1" runat="server" defaultbutton="_searchButton" onSubmit="_searchButton_Click">
instead of the onClick in the submit button. onClick is for mouse clicks, onsubmit will trigger regardless of how the form was submitted (enter key, mouse click).