Asynchronous File Uploading in Asp.net
How to upload files asynchro开发者_JAVA技巧nously in asp.net without postback?
> 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.
You can use Flash (for example) for this task.
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.
I have an open source control that does this in my site:
http://pjondevelopment.50webs.com/articles/asyncupload.html
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.
I use this works great plus it got multiple fileupload.
http://slfileupload.codeplex.com/
精彩评论