Whatever message this page gives is out now! Go check it out!
ColdFusion.FileUpload.startUpload(name) |
Parameter | Description |
name | The value of the name attribute in the cffileupload tag. |
<script language="JavaScript" type="text/javascript">
function onUpload() {
ColdFusion.FileUpload.startUpload('myupload');
};
</script>
<cffileupload
url="uploadAll.cfm"
progressbar="true"
name="myupload"
addButtonLabel = "Add File"
clearButtonlabel = "Clear it"
width=600
height=400
title = "File Upload"
maxuploadsize="30"
extensionfilter="*.jpg, *.png, *.flv, *.txt"
BGCOLOR="##FFFFFF"
MAXFILESELECT=10
UPLOADBUTTONLABEL="Upload now"/>
<cfform name="form01">
<cfinput type="button" name="startupload" value="Start Upload"
onclick="onUpload()">
</cfform>