Table Of Contents
 

Avoid Forms

Due to a bug in flash you should not place the ProFlashUpload component within a HTML <form> tag.

eg. Don't do this:

<form>
Project Name: <input type="text" name="projectName">
<cf_dccom component="proflashupload" folder="c:\in\"></cf_dccom>
<input type="submit">
</form>


Do this instead:

<form>
Project Name: <input type="text" name="projectName">
<input type="submit">
</form>
<cf_dccom component="proflashupload" folder="c:\in\"></cf_dccom>


Or if you want the submit button after PFU:

<form id="myForm">
Project Name: <input type="text" name="projectName">
</form>
<cf_dccom component="proflashupload" folder="c:\in\"></cf_dccom>
<input type="button" onclick="document.getElementById('myForm').submit()" value="submit">