Hi there...
Is there a SIMPLE script for uploading files to a folder using ASP...?
I have managed to create a FORM for the browsing of the file:
Now, from here - What script can I add to the upload.asp file for it to save files to a folder on a server. Lets say, I want to save files to: "C:\Users\Username\Documents\local_sites\XCSA_Intranet\pages\sap\repository\"
It can be REALLY a simple script, as long as it is working... This file-upload can upload any file with any file size, so there is no restriction neccessary at this stage.
THANX...!
Is there a SIMPLE script for uploading files to a folder using ASP...?
I have managed to create a FORM for the browsing of the file:
Code:
<form method=POST name=form1 action=upload.asp enctype='multipart/form-data'>
<p>
<input type=file name=filename>
</p>
<p>
<input type=submit value='Upload File'>
</p>
</form>
Now, from here - What script can I add to the upload.asp file for it to save files to a folder on a server. Lets say, I want to save files to: "C:\Users\Username\Documents\local_sites\XCSA_Intranet\pages\sap\repository\"
It can be REALLY a simple script, as long as it is working... This file-upload can upload any file with any file size, so there is no restriction neccessary at this stage.
THANX...!