Render a reset button. The reset tag is used together with the form tag to provide form resetting. The reset can have two different types of rendering:
- input: renders as html <input type="reset"...>
- button: renders as html <button type="reset"...>
Please note that the button type has advantages by adding the possibility to separate the submitted value from the text shown on the button face, but has issues with Microsoft Internet Explorer at least up to 6.0
Examples <s:reset value="Reset" />
Render a reset button: <s:reset type="button" key="reset"/>