ASPX文件上载错误:重置了与服务器的连接

时间:2013-07-28 07:11:56

标签: asp.net file-upload configuration-files

虽然这个问题asp.net file upload The connection to the server was reset while the page was loading指的是我正在寻找的解决方案,但它没有说明要添加这些新行的位置:

  <security>
    <requestFiltering>
      <requestLimits maxAllowedContentLength="2000000000" />
    </requestFiltering>
  </security>
  <httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>

请告诉我这些行的添加位置:是machine.config还是web.config?几乎我尝试将其添加到web.config中的每个部分都出现了“无法识别的部分错误”。我不想触摸machine.config直到我确定。感谢。

1 个答案:

答案 0 :(得分:0)

Web.Config中,需要按以下格式添加:

<configuration>
   <system.web>
      <httpRuntime>

示例:

<configuration>
   <system.web>
      <httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>
   </system.web>
</configuration>

有关详细信息,请阅读以下文章: http://msdn.microsoft.com/en-us/library/e1f13641(v=vs.71).aspx