Possible Duplicate:
Streaming large file uploads to ASP.NET MVC
To my understanding, when a user upload a file to an asp.net (webforms or mvc), IIS buffers the file content to the memory and doesn't hit the application until all file content is received.
This isn't an issue for small files but for large files this is problem for obvious reasons.
In WCF there is transferMode="Streamed"
binding configuration to allow the WCF service to receive the request as chunks.
Is there a configuration in IIS or asp.net that allows http streaming ?
I'm using IIS 7 and asp.net mvc.