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>
    复制代码
  • 相关阅读:
    Python学习笔记5
    Python字符串的encode与decode
    python代码`if not x:` 和`if x is not None:`和`if not x is None:`
    关于sys.argv
    Python学习笔记4
    Python学习笔记3
    Python学习笔记2
    生产者消费者_测试
    进程管理
    软件包管理
  • 原文地址:https://www.cnblogs.com/benhua/p/9445036.html
Copyright © 2011-2022 走看看