Button Type in ASP.NET Button Control

12 Jan 20221 minute to read

Button is used as normal click button, submitting form data, resetting the form data to its initial value. According to the usage of button, you can render the button in three types. By using the Type property, you can easily render the button in following types.

Button

The button is a click able button

Submit

The button is a submit button (submits form-data)

Reset

The button is a reset button (resets the form-data to its initial values)

In the ASPX page, add the following button elements to configure Button with various types.

  • HTML
  • <%--Set the different types for button control as follows--%>
    
    <ej:Button ID="Button" runat="server" Type="Button" Text="button" Size="Mini" ShowRoundedCorner="true">
    
    </ej:Button>
    
    <br />
    
    <br />
    
    <ej:Button ID="SubmitButton" runat="server" Type="Submit" Text="submit" Size="Mini"
    
        ShowRoundedCorner="true">
    
    </ej:Button>
    
    <br />
    
    <br />
    
    <ej:Button ID="ResetButton" runat="server" Type="Reset" Text="reset" Size="Mini"
    
        ShowRoundedCorner="true">
    
    </ej:Button>

    ASPNET Button Type