FROMSELECTOPEN and FORMSELECTCLOSE v17
This function and procedure generates the <SELECT> and </SELECT> tags, which create a select form element. A select form element is a list box from which the user selects one or more values.
Syntax
The following is the syntax for HTP:
Htp.FORMSELECTOPEN ( cname IN VARCHAR2 cprompt IN VARCHAR2 DEFAULT NULL nsize IN INTEGER DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL); htp.formSelectClose;
The following is the syntax for HTF:
HTF.FORMSELECTOPEN (cname, cprompt, nsize, cattributes) RETURN VARCHAR2; HTF.FORMSELECTCLOSE RETURN VARCHAR2;
Parameters
| Parameter | Purpose |
|---|---|
| cname | The value for the NAME attribute |
| cprompt | The string preceding the list box |
| nsize | The value for the SIZE attribute |
| cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters