FORMSUBMIT v17
This function and procedure generates the <INPUT> tag with TYPE="submit". This tag creates a button that submits the form.
Syntax
The following is the syntax for HTP:
HTP.FORMSUBMIT ( cname IN VARCHAR2 DEFAULT NULL cvalue IN VARCHAR2 DEFAULT 'Submit' cattributes IN VARCHAR2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.FORMSUBMIT (cname, cvalue, cattributes) RETURN VARCHAR2;
Parameters
| Parameter | Purpose |
|---|---|
| cname | The value for the NAME attribute |
| cvalue | The value for the VALUE attribute |
| cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters