我有一个带有 5 个 asp.net 上传控件的表单。这是为了允许用户上传 5 个大文件并提交。实现这一目标所需的步骤是什么?我在 IIS 中检查了以下配置,应用程序池:空闲超时:20 分钟,循环定期时间间隔:1740 分钟。我在我的网络配置文件中指定了以下内容,
<system.web>
<httpRuntime maxRequestLength="1048576" requestValidationMode="2.0"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824"/>
</requestFiltering>
</security>
</system.webServer>
当我尝试在所有 5 个上传控件中上传文件时,我无法上传文件。