MultiPartFormEncoding (HttpRequest property): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 5: | Line 5: | ||
that indicates whether Multipart Form encoding | that indicates whether Multipart Form encoding | ||
support is on or off. | support is on or off. | ||
If on (<code>True</code>), an HTTPRequest object can | If on (<code>True</code>), an <var>HTTPRequest</var> object can | ||
send file data to a web site | send file data to a web site | ||
from either a Longstring or a Stringlist. | from either a Longstring or a Stringlist. | ||
Line 19: | Line 19: | ||
</td></tr> | </td></tr> | ||
<tr><th>%httpreq</th> | <tr><th>%httpreq</th> | ||
<td>A previously defined and instantiated HTTPRequest object. | <td>A previously defined and instantiated <var>HTTPRequest</var> object. | ||
</td></tr> | </td></tr> | ||
<tr><th>newvalue</th> | <tr><th>newvalue</th> |
Revision as of 22:42, 15 June 2011
Template:HTTPRequest:MultiPartFormEncoding subtitle
This property sets and returns a Boolean enumeration
(True
or False
)
that indicates whether Multipart Form encoding
support is on or off.
If on (True
), an HTTPRequest object can
send file data to a web site
from either a Longstring or a Stringlist.
The Post of file data using this encoding support emulates an HTML form that uses enctype="multipart/form-data" and a type="file" input field.
Syntax
Template:HTTPRequest:MultiPartFormEncoding syntax
Syntax terms
%curr | The value (True or False ) of %httpreq's MultiPartFormEncoding property.
|
---|---|
%httpreq | A previously defined and instantiated HTTPRequest object. |
newvalue | The Boolean enumeration value (True or False ) to assign to %httpreq's MultiPartFormEncoding property.
|
Usage notes
- To enable file-based form uploads:
- MultiPartFormEncoding must be set to True before any AddField statements are issued, or the request is cancelled.
- For an example of code that uses the MultiPartFormEncoding property, see this AddField example.
- For information about Enumerations, see "Enumerations".