错误101(net :: ERR_CONNECTION_RESET):连接已重置

Vic*_*ti. 4 c# asp.net-mvc-3

我已经开发了一个小的asp.net MVC3应用程序,我已经将视频文件上传到应用程序服务器路径.当我上传2MB视频文件时,它被上传.但是当它上传50mb文件时它显示错误就像.

        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.
Run Code Online (Sandbox Code Playgroud)

我在web.config文件中设置了执行时间和maxrequested长度.

  <httpRuntime maxRequestLength="20480" executionTimeout="12000"/>
Run Code Online (Sandbox Code Playgroud)

我怎么解决这个请帮帮我..

dee*_*epi 7

<httpRuntime maxRequestLength="51200" executionTimeout="0"/>
Run Code Online (Sandbox Code Playgroud)

这里

executionTimeout="0" takes unlimited time
maxRequestLength="51200"    for 1mb=1024  so for 50mb=51200
Run Code Online (Sandbox Code Playgroud)

  • executionTimeout必须大于零 (2认同)