2018-08-28 IIS配置文件上傳大小限制 問題:上傳文件過大導致上傳不了,直接在webconfig里做以下配置會導致程式出錯,這個需要在IIS里配置 步驟: 1、在iis里點開配置編輯器 2、在system.web/httpRuntime 節點下找到以下配置項,設置文件大小。(1M = 10 ...
2018-08-28
IIS配置文件上傳大小限制
問題:上傳文件過大導致上傳不了,直接在webconfig里做以下配置會導致程式出錯,這個需要在IIS里配置
<system.web> <httpRuntime maxRequestLength="20480" targetFramework="4.5" /> </system.web>
步驟:
1、在iis里點開配置編輯器
2、在system.web/httpRuntime 節點下找到以下配置項,設置文件大小。(1M = 1024K)
結果在webconfig里會多出該節點
<system.web> <httpRuntime maxRequestLength="20480" targetFramework="4.5" /> </system.web>