Classic asp file upload with jquery goodness?

11,657

Solution 1

My current favourite on the client side is Plupload which if you disable chunking works fine with classic ASP scripts, and the ASP side can be as simple or as complicated as you like.

The ASP page merely needs to receive a single file and process it however you want with whatever component or native solution you use for file uploads.

Solution 2

File Upload widget with multiple file selection, drag&drop support, progress bars and preview images for jQuery. Supports cross-domain..

Classic ASP https://github.com/blueimp/jQuery-File-Upload/wiki/Classic-ASP

Share:
11,657
Caveatrob
Author by

Caveatrob

ASP.NET/C# Coder SQL Server Developer Writer Teacher

Updated on June 04, 2022

Comments

  • Caveatrob
    Caveatrob almost 2 years

    Is there a combination of Classic ASP file uploading and JQUery that you've used to make a clean and solid Classic ASP Upload/progress bar/ajax solution?