Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

upload script

Status
Not open for further replies.
Joined
Mar 20, 2003
Messages
103
Location
AU
I have the following script.

its uploading a file to the following directory path

test/myfolder/uploaded_images

Call objUpload.File(x).SaveToDisk(Server.MapPath("uploaded_images"), theFileName)

The file containing the script above MUST be place in the MYFOLDER

If I want a file to be uploaded in the following path

test/uploaded_images

How should my script be?
 
you mean:

Call objUpload.File(x).SaveToDisk(Server.MapPath("./test/uploaded_images"), theFileName)

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top