I have an ASP.Net MVC application that allows users to upload images. When I try to upload a really large file (400MB) I get an error.
I assumed that my image proces
You need to be sure to pipe data off the input stream into a filestream of some form so that the whole request entity isn't needed in memory.