Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whats the best, most simple ajax file uploader?

I have asp.net 3.5 website, and i want to put an ajax uploader, but i want this ajax uploader to:

  1. don't refresh the page while/after uploading
  2. easy to integrate
  3. free
  4. Not swf upload control
  5. i will use it in uploading images, so want a simple way to get the uploaded image file name, and be able to tell it in which folder to upload to.

any one know a good one?

like image 780
Amr Elgarhy Avatar asked Mar 05 '09 14:03

Amr Elgarhy


People also ask

Can we upload file using AJAX?

File upload is not possible through AJAX. You can upload file, without refreshing page by using IFrame .

How files are handled in AJAX?

Ajax file uploads A JavaScript method must be coded to initiate the asynchronous Ajax based file upload; A component must exist on the server to handle the file upload and save the resource locally; The server must send a response to the browser indicating the JavaScript file upload was successful; and.


1 Answers

I found a few different options out there. I haven't used any of them, but I will most likely look into the 3rd option here in the near future.

  • http://en.fileuploadajax.subgurim.net/
  • http://ajaxuploader.com/
  • http://mattberseth.com/blog/2008/07/aspnet_file_upload_with_realti.html
like image 172
RSolberg Avatar answered Oct 17 '22 10:10

RSolberg