Caveatrob
Caveatrob

Reputation: 13267

Classic asp file upload with jquery goodness?

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?

Upvotes: 2

Views: 11784

Answers (2)

Yusuf
Yusuf

Reputation: 27

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

Upvotes: 2

Richard Benson
Richard Benson

Reputation: 1487

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.

Upvotes: 1

Related Questions