FORMFILE v17
This function and procedure generates the <INPUT>
tag with TYPE="file"
. This tag allows the user to select files whose contents can be submitted with a form.
Syntax
The following is the syntax for HTP:
HTP.FORMFILE( cname IN varchar2 caccept IN varchar2 DEFAULT NULL cattributes IN varchar2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.FORMFILE (cname, caccept, cattributes) RETURN VARCHAR2;
Parameters
Parameter | Purpose |
---|---|
cname | The value for the NAME attribute |
caccept | A comma-seperated list of MIME types for upload |
cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters