Computer Applications

Differentiate between Submit Button and Reset Button.

HTML Advanced Features

14 Likes

Answer

Differences between Submit Button and Reset Button:

S.
No.
Submit ButtonReset Button
1.Submit button is used to send the data entered in the form to the server for processing.A reset button is used to clear or reset the contents of a form, reverting all form fields back to their default or initial values.
2.It is defined as follows:
<INPUT Type = "Submit" Value = "SEND">
It is defined as follows:
<INPUT Type = "Reset" Value = "RESET">

Answered By

5 Likes


Related Questions