1

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?

Brian Hvarregaard
  • 4,081
  • 6
  • 41
  • 77

2 Answers2

1

You need to stream the large file uploads. Please refer to following Streaming large file uploads to ASP.NET MVC

Community
  • 1
  • 1
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240
  • Thats not it, they upload from a windows application to a web page/service, i want to post the file from another web page. I want to do everything in HTML. – Brian Hvarregaard Aug 15 '11 at 22:13
1

Never found an ansver, still using Silverlight

Brian Hvarregaard
  • 4,081
  • 6
  • 41
  • 77