views:

351

answers:

6

HI

How to upload files asynchronously in asp.net without postback

thannking you.

A: 

You'll need to develop something which runs at client side (like Flash, Java, Silverlight) which breaks your files in chunks and send them directly to server in multiple requests.

Rubens Farias
+2  A: 

You can use Flash (for example) for this task.

iburlakov
A: 

I have an open source control that does this in my site:

http://pjondevelopment.50webs.com/articles/asyncupload.html

Paulo Santos
A: 

There is an AsyncFileUpload control in the Ajax control toolkit - AsyncFileUpload Sample. The toolkit is free and builds on top of the MS ASP.NET AJAX Extensions. If you are using VS 2008 and .NET 3.5 then you already have the extensions installed.

lingvomir
+1  A: 

> There is an AsyncFileUpload control in the Ajax control toolkit - AsyncFileUpload Sample.

The control doesn't preserve query string on postback. So it's completely useless in current implementation.

sampai
A: 

I use this works great plus it got multiple fileupload.

http://slfileupload.codeplex.com/

Dejan.S