Published by exdone
Posted on December 07, 2007
Please try again.
————–
Solution
instead of using Upload.Save , you must use the UploadSaveVirtual function
Function SaveVirtual (Optional VirtualPath, Optional Key, Optional Ext) As Long Same as Save but expects a virtual path rather than a physical path. This method internally calls the function Server.MapPath to convert the virtual into physical path. Therefore, Upload.SaveVirtual(path) is equivalent to Upload.Save(Server.MapPath(path)). In a Web hosting environment, the system administrator may disable the Save method so that an AspUpload user would be forced to use SaveVirtual which would confine him to his home directory and subdirectories.
reference:
http://www.aspupload.com/object_upload.html#SaveVirtual