我遇到超出最大请求长度错误的问题,当我尝试在我的.net mvc应用中上传更多3-4张照片时,我得到:
integer
我找到了IIS 7的解决方案:
Server Error in '/' Application.
我尝试将它添加到我的web.config中,但可能它不适用于IIS 10或者我做错了什么,因为我还是新手。
答案 0 :(得分:5)
我解决了它,只需将此 maxRequestLength =" 214748364" 添加到web.config:
<system.web>
<httpRuntime targetFramework="4.5.2" maxRequestLength="214748364" />
</system.web>