ASP.NET Button

Button <asp:button/>

Post back control for form submission.

Properties:    

Id=”btn”
Runat=”server”
Text=”Search”
Enabled=”true/false”

Creates an unique identifier
Sets  the button for server side processing
Displays text on the button
Enables or Disables the button

Example: <asp:button id=”btn” runat=”server” text=”Search”/>