What is the Reset and submit button?

Asked By 0 points N/A Posted on -
qa-featured

Hello,

What is the Reset and submit button? How does it work? Where does it use? Please tell me about details. Is Reset and submit button important to web page?

SHARE
Best Answer by Toni Linscomb
Answered By 5 points N/A #164802

What is the Reset and submit button?

qa-featured

Hello,

In the HTML reset and submit buttons are used in form section.

The reset button clears the form when you clicked on that button.

The submit button used to submit your form data.

For submit data some attribute like method used to how data submit and action for where the data will be acted.

Example:

Thanks.

Best Answer
Best Answer
Answered By 5 points N/A #164803

What is the Reset and submit button?

qa-featured

 

Use of submit button is to submit form data to the server. For example let’s say you are filling out a registration form on a web page. After you fill all details you’ll see a submit button on the form once you hit submit the data you’ve filled out to the form will be transferred to the server and saved in the database permanently so that you can retrieve them on later time.

Use of reset button is to clear out the text fields on a web form. when you are filling the registration form let’s say that you wanted to clear out all fields and start again then you press the reset button and start the form filling again. Remember once you press submit data is already saved to the database then you cannot expect to clear the data that you have already submitted

Related Questions