views:

3469

answers:

4

I am looking for a jQuery plug in that will allow me to upload files and/or navigate to files on the file system.

It would be used to allow a visitor to add multiple images to a news article.

I am using ASP.NET MVC so it would have to be compatible with that.

Edit: Something like this would work great - KFM Demo

A: 

A quick search at jQuery returns several results that you could use:

jQuery Search: file upload

All of these are going to add the ability to select files and upload them to the server. The rub here is that jQuery is a javascript library and only runs on the client side. You're going to need to write server side code in your .NET MVC application to process the file uploads as you get them from the client.

Justin Niessner
I understand that I would need to process it server side as well but I am looking for a file manager to pass the files on to the server side. Kinda of like most WYSIWYG editors have an image browser tool.
William
A: 

Well, there is no plugin ready to do all that you want, but you could mix a JavaScript/Flash file uploading library (I like SWFUpload) and jQuery UI to make a simple photo manager.

Check this jQuery UI droppable demo.

CMS
A: 

jQuery is just javascript, so you can't get that level of functionality with just that. You'll need some ActiveX, Flash, Java, or Silverlight module.

Since you're using ASP.Net the obvious solution is SlickUpload and I think it may have some File System Browser stuff built into it.

hunter
Do you really need to depend on flash / java etc plugins? I think JQuery is a lot more impressive than you realise, for example check this out: http://www.uploadify.com/demo/
James Allen
Uploadify uses Flash, it's not purely JS.
S Pangborn
A: 

This works like a charm.

CmdrTallen