有誰知道如何刪除30MB上傳限制,專門用於IIS Express?刪除IIS上的30MB上傳限制
我試過編輯對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>
似乎是正確設置?
任何想法?
maxAllowedContentLength在BYTES中設置。 maxRequestLength在KILOBYTES – 2012-08-15 18:03:35