Image Uploading with Classic ASP

asp-classiccomponentsimageupload

Hey I was wondering if there were any way to upload images in ASP? I am working on my school's server and I don't really know what is installed and what isn't I Googled a little and came up with "Persits.Upload.1" I tried to instantiate the object with this line:

Set Upload = Server.CreateObject("Persits.Upload.1")

It gave me this error,

Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed

Am I to assume the component is not installed on the server and/or what should I do for uploading images?

Thanks

Best Answer

Sounds like it couldn't load the class, my ASP very rusty though.

That component is a commercial one, so unless someone has paid for it, you probably don't have it installed.

I have used free asp upload http://www.freeaspupload.net/ a few times, although it was a while a go, that might be a reasonably easy option for you.

Related Topic