Programming/Asp.Net MVC

Web.config - How to config max upload file size

Bandcy 2014. 7. 22. 14:45

httpRuntime의 maxRequestLength를 설정함으로써 변경할 수 있습니다.


<system.web>

 <compilation debug="true" targetFramework="4.5" />

  <httpRuntime targetFramework="4.5" maxRequestLength="102400" />

 

Reference

http://support.microsoft.com/kb/815307/ko