zoukankan      html  css  js  c++  java
  • IIS7.5只能上传2M文件的解决办法

    <system.web>
      
    <httpRuntime executionTimeout="36000" maxRequestLength="2097151"/>
      
    <!--maxRequestLength:上传的大小,单位K   ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) -->
    </system.web>
    <system.webServer>
      
    <security>
        
    <requestFiltering>
          
    <requestLimits maxAllowedContentLength="2147483647" />
        
    </requestFiltering>
      
    </security>
    </system.webServer>
  • 相关阅读:
    Beta冲刺第三天
    Beta冲刺第二天
    C#编程(三十三)----------Array类
    ComputeColStats UDF中 近似算法的介绍(续)
    云计算技术第三堂课20210317
    云计算与信息安全第三堂课20210316
    操作系统第三堂课20210315
    ROSPlan教程
    机器学习第二堂课20210311
    云计算技术第二堂课20210310
  • 原文地址:https://www.cnblogs.com/linyechengwei/p/2038997.html
Copyright © 2011-2022 走看看