當我試圖上傳32MB的文件時,firefox在頁面上顯示以下錯誤。asp.net文件上傳與服務器的連接在頁面加載時被重置
「連接已重置。 連接到服務器的過程在頁面加載時被重置。」
我試過foll。解決方案 -
1。 in <system.web>
<httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>
2。在<system.webserver>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2000000000" />
</requestFiltering>
</security>
和
<compilation defaultLanguage="c#" debug="false" />
,但仍然得到同樣的錯誤。 我認爲問題與「executionTimeout」有關。應用程序不會爲請求設置此超時。
是的......我會這樣做的。 – Abhi
它在localhost上的工作正常,但在客戶端服務器上工作不正常。客戶端有IIS 7. – Abhi
您收到哪些錯誤代碼? 404.XX? – Blachshma