2011-06-22 26 views
4

小さなasp.net MVC3アプリケーションを開発しました。アプリケーションサーバーのパスにビデオファイルをアップロードしました.2MBのビデオファイルをアップロードするとアップロードされます。 itryが50MBのファイルをアップロードすると、そのようなエラーが表示されます。エラー101(net :: ERR_CONNECTION_RESET):接続がリセットされました

 This webpage is not available 
The webpage at http://localhost:1318/Campaign/Advertises might be temporarily down or it     
may have moved permanently to a new web address. 
Here are some suggestions: 
Reload this web page later. 
Error 101 (net::ERR_CONNECTION_RESET): The connection was reset. 

web.configファイルで実行時間とmaxrequested lengthを設定しました。ただ、隣の男のための答えは、より完全なものにする

<httpRuntime maxRequestLength="20480" executionTimeout="12000"/> 

どのように私はこの問題を解決することができ、私を助けてください..

答えて

6
<httpRuntime maxRequestLength="51200" executionTimeout="0"/> 

ここ

executionTimeout="0" takes unlimited time 
maxRequestLength="51200" for 1mb=1024 so for 50mb=51200 
+0

返信いただきありがとうございます。実行時にweb.configにエラーが表示されました。 –

+0

ありがとうございましたあなたsooo..guch –

+2

executionTimeoutはゼロより大きくなければならない – jao

2

のhttpRuntime行きますin <system.web>

executionTimeoutの値が0の場合IISの一部のバージョンでのみ動作する

関連する問題