Chr*_*rry 8 .net iis iis-express
有谁知道如何删除30MB上传限制,特别是对于IIS Express?
我已经尝试编辑applicationhost.config和
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1050000"></requestLimits>
</requestFiltering>
</security>
<location path="api/media/AsyncUpload">
<system.web>
<httpRuntime maxRequestLength="1050000" />
<!-- The size specified is in kilobytes. The default is 4096 KB (4 MB). 1gb = 1048576 -->
</system.web>
</location>
Run Code Online (Sandbox Code Playgroud)
好像设置正确吗?
有任何想法吗?
Hen*_*ang 11
您应该更改服务器配置文件.你正在寻找的领域是
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="524288000"/>
</requestFiltering>
</security>
</system.webServer>
Run Code Online (Sandbox Code Playgroud)
如果它不存在,添加它应该覆盖默认值.