アップロードできる最大サイズを 100MBytes にセットする場合
Web.config 以下をセットする
<configuration>
<system.web>
<httpRuntime targetFramework="4.6.1" />
</system.web>
</configuration>
↓
<configuration>
<system.web>
<httpRuntime targetFramework="4.6.1" maxRequestLength="102400" />
</system.web>
</configuration>