You can add submit and reset buttons to your HTML form.
When a submit button is selected, it sends all the information entered in an HTML form to the server for processing.
When a reset button is selected, all the information entered in an HTML form is cleared and returned to the default display state.
Adding an action button to an HTML form
Select Buttons on the HTML Form Fields window.
The Add Buttons to HTML Form window displays.
Select the type of button you want to add to your form.
For each button you’ve selected enter a name and value and enter the following information:
The name attribute is used to identify the button. If it is used with a submit button, the name parameter is passed to the server with the form data.
The value attribute is used as the display name for the button. For example, you would typically enter a value of Clear for the reset button, and a value of OK or Enter for the submit button.