_OPEN_FORM_ Method

Outputs the <FORM> tag for the dynamic HTML pages

Syntax

CALL SEND(OBJID,'_OPEN_FORM_',url,form-name,form-target);

Required Arguments

url
the URL of the next query.
Type:Character
form-name
the name of the form. This parameter is optional.
Type:Character
form-target
the target window name. This parameter is optional.
Type:Character

Details

For further explanation of the <FORM> tag, refer to your favorite HTML reference documentation.

Example

CALL SEND (WEBID, '_OPEN_FORM_','/SCRIPTS/BROKER','MYFORM','MENUFORM');
The following output is produced:
<FORM ACTION="/SCRIPTS/BROKER" NAME="MYFORM" TARGET="MENUFORM">