IIS 10.0最大请求长度.NET MVC

时间:2016-02-13 02:21:08

标签: c# asp.net asp.net-mvc asp.net-mvc-4 iis

我遇到超出最大请求长度错误的问题,当我尝试在我的.net mvc应用中上传更多3-4张照片时,我得到:

integer

我找到了IIS 7的解决方案:

Server Error in '/' Application.

我尝试将它添加到我的web.config中,但可能它不适用于IIS 10或者我做错了什么,因为我还是新手。

1 个答案:

答案 0 :(得分:5)

我解决了它,只需将此 maxRequestLength =" 214748364" 添加到web.config:

<system.web>
    <httpRuntime targetFramework="4.5.2" maxRequestLength="214748364" />
</system.web>