1. 程式人生 > >Asp.net:上傳文件超過了最大請求長度

Asp.net:上傳文件超過了最大請求長度

默認值 stl 文件 style 解決方案 div exec .net 求長

錯誤消息:超過了最大請求長度 錯誤原因:asp.net默認最大上傳文件大小為4M,運行超時時間為90S。 解決方案 1. 修改web.config文件可以改變這個默認值
  <configuration>       
        <system.web>       
                    <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
        </system.web>       
  <configuration>  

Asp.net:上傳文件超過了最大請求長度