AttachedFile Property
A file to append to PostData if the POST or PUT methods are used.
Syntax
__property String AttachedFile = {read=FAttachedFile, write=FSetAttachedFile};
Default Value
""
Remarks
If this property contains a non-empty string, then if the HTTP 'POST' or 'PUT' methods are used (through the Post or Put methods), the contents of this property are appended to the HTTP request after any data in PostData.
An HTTP 'Content-Length' header is also added to request. Its value is the cumulative length of the PostData string and the file.
If you are attempting to upload a file to a receiving script, this property must be MIME encoded, or you should use the WebUpload component.
This property is not available at design time.
Data Type
String