Microsoft.NET\Framework\v1.1.4322\CONFIG\中machine.config文件。修改内容如下:
将<httpRuntime ...>中 executionTimeout的值改大,例如36000。
将 maxRequestLength的值改大,例如上传限制如果为10M就改为10240
其他选项不变。

在2.0中通过修改web.config即可。

<configuration>
      <system.web>
      <httpRuntime   maxRequestLength="1048576"   executionTimeout="3600"   />
      </system.web>
</configuration>


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
  • 2021-10-30
  • 2022-12-23
猜你喜欢
  • 2022-03-09
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2021-09-01
  • 2022-01-12
相关资源
相似解决方案