I’m pretty new to ASP, so bear with me. I took over an ASP site and am having trouble uploading pics through the user interface. I get the following message: Microsoft VBScript runtime error '800a01ad' ActiveX component can't create object: 'SoftArtisans.FileUp' /admin/UPLImage.asp, line 15 The line refered to by the message states: upl.Path = "d:\html\users\username\website.com\Images\pages" Any suggestions would be most appreciated. Nett
upl.Path = "d:\html\users\username\website.com\Images\pages" looks like generic code, meant to be replaced by your actual directory location. look on your server and see what the actual drive/directory is and try placing that path in place of d:\html\users\username\website.com\Images\pages
the error's in creating the "upl" object which is an instance of SoftArtisans.FileUp I'd check you have that installed and that you are creating the object before using it. As previously stated, the path does also look to be generic. Enjoy