Name of the HTML form with additional information which should be sent to the server along with files.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("AdditionalFormName", "");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setAdditionalFormName(value);
value = getImageUploader("ImageUploaderID").getAdditionalFormName();
Property Value

A string value containing a name for the form you need to submit along with files. If this value is an empty string or an invalid form name (which does not exist on this page), no additional data is sent.

Default value is "".

Remarks

If Image Uploader is used as a component in standard EXE application.

The additional form may contain the following elements:

  • Input fields (except of <input type="image"> and <input type="file">).
  • Text areas.
  • Select elements.
NoteNote

The additional form must be placed into the same frame with the Image Uploader.

See Also

Examples
Uploading Additional Data with Files

Reference
AddField Method
Send Method