Thanks for any help!
Here is the code on the submit page:
Code:
CODE
<FORM ACTION="UploadSubmit.cfm" METHOD="POST" name="UploadForm" enctype="multipart/form-data">
<input type="file" name="UploadFile" id="UploadFile" size="40">
<input type="submit" name="UploadSubmit" id="UploadSubmit" value="Submit">
</FORM>
And here is the code on the action page:
Code:
CODE
<cfif ISDEFINED("form.UploadSubmit")>
<cffile action="upload" filefield="UploadFile" destination="D:\DocLibrary\Docs" nameconflict="makeunique">
<cffile action="move" source="D:\DocLibrary\Docs\#????#" destination="F:\DocumentLibrary">
</cfif>
Thanks,kvarnerexpress

