【发布时间】:2018-02-20 05:45:25
【问题描述】:
我的网络配置中有以下设置:
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.6" />
<httpRuntime requestValidationMode="2.0" targetFramework="4.6" maxRequestLength="92160" executionTimeout="3600" />
</system.web>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="94371840" />
</requestFiltering>
</security>
它们都等于 90 MB。我正在使用 Telerik 的异步上传器来上传文件。我一直在通过上传 100 MB 的文件进行测试,以查看是否触发了错误。但是,文件上传没有问题。无法弄清楚为什么没有触发错误。这个问题可能就在我面前。谁能弄清楚为什么?
【问题讨论】:
标签: c# asp.net iis iis-7 telerik