0

虽然这个问题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。谢谢。

4

1 回答 1

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

于 2013-07-28T07:25:06.977 回答