WOForm


Synopsis

WOForm { [action = aMethod;] ...};

WOForm { [href = aURL;]...};

Description

A WOForm is a container element that generates a fill-in form. It gathers the input from the input elements it contains and sends it to the server for processing. WOForm corresponds to the HTML element <FORM> ... </FORM>.

href
The URL specifying where the form will be submitted.
action
The method that's invoked when the form is submitted. If the form contains an WebObject that has its own action (such as a WOSubmitButton or a WOActiveImage), that action is invoked instead of the WOForm's.

Examples