Hi KJG,
Tow ways.
1. Set property SaveDirectory. And than the upload file will save into the folder you set.
uploader.SaveDirectory="savefiles"
2. Use function "CopyTo" or "MoveTo" to save the upload files.
'Copys the uploaded file to a new location.
mvcfile.CopyTo("/uploads")
'Moves the uploaded file to a new location.
mvcfile.MoveTo("/uploads")
Example "form-multiplefiles.asp" shows you how these functions work.
Regards,
ken