Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need an ASP.NET control for file uploads that can work in an update panel. Any ideas?

share|improve this question
2  
An asynchronous upload control is now part of the Ajax Control Toolkit (and it is free). – kjv Nov 20 '09 at 17:14

10 Answers

up vote 7 down vote accepted

If you don't want to implement it yourself, you are willing to pay money, I would recommend Ajax Uploader.

It allows you to select multiple files and upload multiple files at once. It supports ASP.NET AJAX frameworks and works in Ajax UpdatePanel.

Demo:

Select and upload multiple files at once

share|improve this answer
That's also requries Flash for the multiple files at once feature. – Todd Smith Feb 5 '10 at 0:52
... or Silverlight. The FAQ covers this: ajaxuploader.com/FAQ.htm#11 - "For selecting multiple files at once, silverlight or flash is required." – Chris Porter Nov 15 '11 at 15:59
It is not free. – dnk.nitro Feb 6 at 15:04

Another free one is the AsyncFileUpload control that is part of the ASP.NET Ajax Control Toolkit.

share|improve this answer

The jQuery plugin Uploadify is nice. Not sure if it can work inside an update panel.

share|improve this answer
This worked well for me. Only problem is that in firefox the flash connection has a different session than the html/xhttp session. – Christian13467 Sep 7 '11 at 7:16

try this one

http://www.brettle.com/neatupload

or

http://www.brettle.com/free-and-open-source-software/neatupload

It was actually moved to CodePlex: http://neatupload.codeplex.com/

share|improve this answer
The documentation on this needs work but it works great overall. – EfficionDave Dec 2 '11 at 19:37
The link in this answer gives a "Page Not Found" error, so I have added the link below the original. – BGM Apr 30 '12 at 15:50
Anyone have a link to an online demo? – BGM Apr 30 '12 at 20:50
I wrote a bit of an installation aide here: stackoverflow.com/questions/10391657/how-to-install-neatupload/… - for those of you having trouble getting the demo to work. – BGM May 1 '12 at 16:13

File uploads require a postback.

You would need to use an iFrame to prevent post-back of the page you are working on.

Full explanation is available here: http://vinayakshrestha.wordpress.com/2007/03/13/uploading-files-using-aspnet-ajax-extensions/

share|improve this answer
2  
Nooooo....Something like swfupload can do this without a full-page postback. – Amy Jun 24 '10 at 14:24

Best there is: http://www.swfupload.org/project

Free and works everytime

share|improve this answer

I know you asked for a free one, but I am not aware of one. Component Art's File Upload Control (http://www.componentart.com/webui/demos/demos_control-specific/upload/features/core_features/webform1.aspx) is an AJAX File Uploader and there's no need to use an update panel.

Maybe it saves you implementation and search time and that alone pays for the control's price.

Just my $0.02

share|improve this answer

You can use Flash/Flex...check this out: Multiple File Upload With Progress Bar Using Flash and ASP.NET

I'm using it in an UpdatePanel. Make sure you change the way it behaves on "onuploadcomplete". Set it to "click" a button in the UploadPanel on upload complete.

share|improve this answer

I got a nice one, for multiple files upload and FREE too.

http://valums.com/ajax-upload/

share|improve this answer

Here is a blogsite where the fellow reviews many of the above uploaders, and a few others. He then presents his own uploader there. This is definitely worth a look for anyone who is shopping for a downloader. Matt Berseth's solution is an asp-ajax solution.

http://mattberseth.com/blog/2008/07/aspnet_file_upload_with_realti_1.html

At the bottom of the page, Matt asks folks to talk about solutions they have tried, so there are even more suggestions for uploaders with other people's suggestions and ideas.

In fact, here is a Stack Overflow question about it! Whats the best, most simple ajax file uploader?

Here is another list of uploaders: http://chrisleibig.ifunnyblog.com/asp20uploadfile/

share|improve this answer
Matt Berseth's site seems to have an issue. You can visit it only if you disable redirects in your browser. And after that, you still cannot download his package. Sorry, folks. – BGM Apr 30 '12 at 20:47

protected by Will Apr 14 '11 at 18:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.