我们在IIS 6.0中 设置如下所示   <system.web>

 

    <httpRuntime maxRequestLength="804550400" executionTimeout="110" appRequestQueueLimit="100"  />
  </system.web>

 

d然后 我们在IIS7.0中的设置需要加上除了 上面所说的 语句外 另加上 如下所示的代码才可以

 <system.webServer>

    <security>
      <requestFiltering>
       <requestLimits maxAllowedContentLength="1048576000"></requestLimits>      
      </requestFiltering>   
    </security></system.webServer>

 

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2022-02-11
  • 2022-12-23
  • 2021-09-13
  • 2022-02-09
猜你喜欢
  • 2022-12-23
  • 2022-02-14
  • 2022-02-11
  • 2021-08-16
  • 2022-03-08
  • 2021-05-26
  • 2022-12-23
相关资源
相似解决方案