I have a User control with a button to execute a search in the database.
<asp:Panel ID="searchPanel" runat="server" DefaultButton="goButton">
<table class="SearchBox">
<tr>
<td class="SearchBoxHead">Procura no Catálogo</td>
</tr>
<tr>
<td class="SearchBoxContent">
<asp:TextBox ID="searchTextBox" Runat="server" Width="133px" MaxLength="100"
EnableViewState="False" />
<asp:Button ID="goButton" runat="server" onclick="goButton_Click" Text="Ver"
Width="36px" />
<br />
<asp:CheckBox ID="allWordsCheckBox" Runat="server" Text="Usa todas as palavras"
EnableViewState="False" />
</td>
</tr>
</table>
</asp:Pan ...
Go to the complete details ...