enum FormSubmitEncoding in module com::sun::star::form::

(Global Index)

Syntax

enum FormSubmitEncoding;

Description

specify the MIME encoding of the form data sent.

Values Summary

URL URL ("application/x-www-form-urlencoded") is usually used if the FormSubmitMethod attribute has the value POST.

MULTIPART MULTIPART ("multipart/form-data") is used when the form contains a file upload element.

TEXT text/plain is usually used if the FormSubmitMethod attribute has the value POST and the content should be reviewed as full text.

Values Details



URL

Syntax

URL,

Description

URL ("application/x-www-form-urlencoded") is usually used if the FormSubmitMethod attribute has the value POST.


MULTIPART

Syntax

MULTIPART,

Description

MULTIPART ("multipart/form-data") is used when the form contains a file upload element.


TEXT

Syntax

TEXT,

Description

text/plain is usually used if the FormSubmitMethod attribute has the value POST and the content should be reviewed as full text.

Top of Page