検索すれば、既出するネタですが、毎回忘れるので面倒なので備忘録。
毎回思うが、どうして2つあるんでしょ。
web.configファイル内
maxRequestLength属性
<system.web> <httpRuntime maxRequestLength="16000"/> </system.web>
こいつはキロバイト単位
maxAllowedContentLength属性
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="160000000"/> </requestFiltering> </security> </system.webServer>
こいつはバイト単位