Uder Moreira
Uder Moreira

Reputation: 932

How to solve jQuery-File-Upload / Classic-ASP error ASP 0177 - 800401f3?

I'm trying to use 'jQuery-File-Upload' as a solution for uploading files to an IIS/Classic ASP application. On the jQuery-File-Upload project wiki I found out someone who did a very good work (click here to see), but when I try to use is I am receiving an strange error on file upload.asp, line 303 as bellow:

'Persits ASPUpload
Set Upload = Server.CreateObject("Persits.Upload")

Image error

Does anybody here has any idea of what is happening?

Thank you very much, and sorry for my terrible English.

Upvotes: 0

Views: 685

Answers (1)

G. Stoynev
G. Stoynev

Reputation: 7791

In addition to the client-side jQuery "widget", apparently your server-side code relies on an ActicveX control, that needs to be registered on your server (done via its installation package or regsvr32 command). If you google "Persits.Upload", one of the results sends you to this website, where you seem to be able to get that ActiveX. But I want to make a point, that you should only install software that you trust and that I have not used, know, endorse or recommend this ActiveX in any way, shape or form :-)

Upvotes: 1

Related Questions