[Form attribute] Dialog
- [URL]
- URL of CGI program is specified.
- [Method]
- The method of passing a server data from a browser is specified. If GET is used, the data inputted in form will be added to the last of CGI program specified by URL, and will be treated as an argument of CGI program. In the case of POST, input data is passed as a standard input of CGI program. Which is chosen specifies a method according to the type of CGI program which receives data, although based on a case.
- [Target]
- The document displayed when form is performed specifies on which frame it is displayed. The name can be specified when the name is attached to the frame. Moreover, value [ finishing / the following definitions ] can also be specified.
- A new window
- A new window is opened and a document is displayed.
- The same frame
- A document is displayed on the same place as the frame displayed now.
- Parent frame
- A document is displayed on the frame of the parents of the frame displayed now.
- All screens
- A document is displayed on the whole window.
- [Hidden field name]
- The name of the hidden field is specified.
- [Hidden field value]
- The value of the hidden field is specified.

About the hidden field
The hidden field is used to pass a default argument to CGI program. The data specified here is not displayed on a browser. [A hidden field name] and [hidden field value] are surely specified by the pair.