I have a solution where the user uploads large files 4Mb - 200Mb. Right now i read chunks of the file and uploads it to my web service (it MUST upload to this webservice, since it is on another server). Some of my clients are having problems using the Silverlight (most due to security policies). So i want to convert it to plain HTTP upload with progress. Is this possible to do using ASP.NET MVC? How do i chunk the file without the UI stalling and is non-responsive? Is there any "good" approach to this. How do e.g. google accomplish it in their开发者_开发技巧 gmail. Can anyone point me in the right direction?
You need to stream the large file uploads. Please refer to following Streaming large file uploads to ASP.NET MVC
Never found an ansver, still using Silverlight
精彩评论