This is a discussion on "altering uploaded files names" within the Classic ASP section. This forum, and the thread "altering uploaded files names are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
altering uploaded files names
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
altering uploaded files names
Ive got a form that collects the users details (ie. first and last name) and lets them upload their cvs. is there anyway of altering the names of the files they upload by changing it to their name (so cv.doc would become joebloggs.doc).
heres the code that uploads the cv to the server: <% Set Upload = Server.CreateObject ("Persits.Upload.1") Count = Upload.SaveVirtual ("/uploadedCVs/" ) response.redirect("session2.asp") %> currently if files with the same name are uploaded then the newer one would overwrite the existing file. i was thinkin of using sessions to get the names but dont know how to change the file name. Any ideas? Ive solved this issue, the second line of code prevents the overwriting of files so that if cv.doc was uploaded twice, there would be the orignal and then there would be cv(1).doc. <% Set Upload = Server.CreateObject ("Persits.Upload.1") Upload.OverwriteFiles = False Count = Upload.SaveVirtual ("/uploadedCVs/" ) response.redirect("session2.asp") %> But now i have another problem. the upload function is incoporated into a form that send out an email but the form wont email with the (enctype="multipart/form-data") in the form and the file wont upload without it. any ideas? Last edited by Gurpreet82; Mar 6th, 2006 at 11:18. |
|
|
![]() |
| Tags |
| altering, uploaded, files, names |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can multiple domain names point to the same HTML files? | classic123 | Web Page Design | 3 | Oct 30th, 2007 15:33 |
| Rep Altering Power | VanessaJW | Webforumz Cafe | 24 | May 20th, 2007 18:39 |
| Files names without spaces | cyberseed | Web Page Design | 18 | Dec 18th, 2006 19:16 |
| Changes when uploaded | pepe_starr | Web Page Design | 3 | Mar 6th, 2006 21:33 |