Is there any memory restrictions on an ASP.Net application?

后端 未结 5 514
广开言路
广开言路 2020-12-20 05:19

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

5条回答
  •  情话喂你
    2020-12-20 05:51

    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.

提交回复
热议问题