iis文件上传限制
文件上传大小限制 "超过了最大请求长度"
1.iis设置里面修改"system.webServer/security/requestFiltering" requestLimits--》maxAllowedContentLenght 参数修改。
2.web.config中修改 <httpRuntime targetFramework="4.5.2" maxRequestLength="2048000" />
.net core中限制
web.configz中添加
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
</system.webServer>