2010-10-11 83 views

回答

8

此設置配置上傳文件大小限制:

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

默認大小爲30MB〜。

4

與設置你的web.config以下其中xxx爲最大上傳大小以KB爲單位:

<configuration> 
    <system.web> 
    <httpRuntime maxRequestLength="xxx" /> 
    </system.web> 
</configuration> 

默認值是4096(= 4 MB)。 MSDN documentation

1

閱讀this博客文章,你會發現什麼是最大長度,以及如何提高其極限

+8

感謝亞歷克斯,但你所提供的鏈接是我自己的博客:) – 2011-02-02 19:22:05

相關問題