5
At the company where I am working all the systems were built in ASP Classic, and we used Freeaspupload to download files sent through form, but this morning this class stopped working from nothing. Someone’s been through it?
The code I use to pick the 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")
the form uses the ENCTYPE="multipart/form-data"
Returns some error message, notification, etc?
– dHEKU