zoukankan      html  css  js  c++  java
  • asp.net mvc Post上传文件大小限制 (转载)

    最近发现在项目中使用jQuery.form插件上传比较大的文件时,上传不了,于是改了下web.config的上传文件最大限制。

    <configuration>  
        <system.web>  
            <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" />
        </system.web>  
    </configuration>

    改完后还是不能上传,最后在stackoverflow找到了答案,原来还要配置服务端的最大文件限制。

    譬如限制最大文件为100M

    <configuration>  
        <system.web>  
            <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" />
        </system.web>  
    </configuration>
    <system.webServer>  
       <security>  
          <requestFiltering>  
             <requestLimits maxAllowedContentLength="104857600" />  
          </requestFiltering>  
       </security>  
     </system.webServer> 

    you are hosted in IIS, you need two settings:

    • maxRequestLength - for ASP.net (measured in KB)
    • maxAllowedContentLength - for IIS (measured in Bytes)

    Error handling

    Both throws different exceptions.

    • maxRequestLength - Whenever a file exceeds this setting, you'll get an Application_Error (standard ASP error)
    • maxAllowedContentLength - Whenever a file exceeds this setting, you'll get IIS error.

    The IIS error is harder to debug, so it is advisable that you set the maxAllowedContentLength larger. maxRequestLength is easier to catch since its at application level.

    stackoverflow答案地址:http://stackoverflow.com/questions/23327338/maxrequestlength-for-net-4-5-1-framework

  • 相关阅读:
    TCP
    关系型数据库基础
    spark教程(16)-Streaming 之 DStream 详解
    spark教程(15)-Streaming
    灰度图Matlab
    mesh函数
    axis函数
    Matlab提供了两种除法运算:左除()和右除(/)
    基和时间平移矩阵
    转载:实现MATLAB2016a和M文件关联
  • 原文地址:https://www.cnblogs.com/OpenCoder/p/9300099.html
Copyright © 2011-2022 走看看