我有一個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個上傳控件上傳文件上傳文件。
你得到的錯誤是什麼? – Xaqron 2013-02-19 13:59:32
System.Web.HttpException:請求超時。和System.Web.HttpException:超過最大請求長度 – ihmar 2013-02-21 16:17:26