Contents MDDB Report Viewer Methods Previous Next
 

_OPEN_FORM_ Method

Outputs the <FORM> tag for the dynamic HTML pages.

Syntax

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

Where... Is Type... And Contains...
url C The URL of the next query.
form-name C The name of the form. This parameter is optional.
form-target C The target window name. This parameter is optional.

For additional information, refer to your favorite HTML reference book for further explanation of the <FORM> tag.

Example

CALL SEND (WEBID, '_OPEN_FORM_','/SCRIPTS/BROKER','MYFORM','MENUFORM');

The following output is produced:

<FORM ACTION="/SCRIPTS/BROKER" NAME="MYFORM" TARGET="MENUFORM">

Contents MDDB Report Viewer Methods Previous Next