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

后端 未结 5 516
广开言路
广开言路 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:55

    There is really no hard-limit for upload sizes. However, if you're on a 32-bit process, you may be limited by the amount of memory your asp.net worker process can address. Once it gets around 800mb, it becomes very unstable.

    The timeout settings mentioned by Bravax are also a good place to check.

    Cheers on using TDD!

提交回复
热议问题