FreeASPUpload Classic ASP stopped working

5

In the company I'm working on all systems were built in Classic ASP, and we used FreeASPUpload to download files sent through form, but this morning this class stopped working out of nowhere. Has anyone gone through this?

The code I use to get form variables is this:

Set Upload = New FreeASPUpload  
uploadsDirVar = server.mappath ("upload\"&id_grupo_segmento)
SaveFiles = ""
Upload.Save(uploadsDirVar)
ks = Upload.UploadedFiles.keys

id_pessoa = Upload.Form("id_pessoa")
id_pesquisa = Upload.Form("id_pesquisa")
id_grupo_segmento = Upload.Form("id_grupo_segmento")
id_status_contato = Upload.Form("id_status_contato")
id_status_pesquisa = Upload.Form("id_status_pesquisa")

o form uses ENCTYPE="multipart/form-data"

    
asked by anonymous 14.12.2015 / 14:16

1 answer

4

Verify that the servers with the classic ASP applications have been updated by KB3104002 >.

It has updated the files VBScript.dll and JSCript.dll , which interpret the scripts.

In Time: This type of occurrence will happen more and more frequently, as Microsoft no longer supports technology. I suggest upgrading to a more modern framework.

    
14.12.2015 / 14:23