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>
    复制代码
  • 相关阅读:
    Chrome快捷键统计
    数据封装
    数据抽象
    linux c++ 服务器端开发面试必看书籍(转载)
    闭包和高阶函数
    this,call,apply,bind
    DOM浏览器window对象模型
    jquery滚动条
    xml教程
    多态
  • 原文地址:https://www.cnblogs.com/benhua/p/9445036.html
Copyright © 2011-2022 走看看