有谁知道如何取消 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>
似乎设置正确?
有任何想法吗?