ファイルアップロードの上限値 [.net]

ファイルアップロード時の上限値はデフォルトで4096 (4 MB)となっている。

web.configファイルのhttpRuntime のmaxRequestLength属性値を変えることで上限値を『0~2097151 KB 』の間で変更することが可能。

  
 <system.web>
    <!-- 設定値 0~2097151 KB デフォルトは4096 KB (4 MB) -->
    <httpRuntime maxRequestLength="4096" />
  </system.web>