본문 바로가기

Programming/Asp.Net MVC

Web.config - How to config max upload file size

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


<system.web>

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

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

 

Reference

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

'Programming > Asp.Net MVC' 카테고리의 다른 글

Web cache  (0) 2015.01.28
ASP.NET vNext  (0) 2014.10.06
Dynamic resource file handling  (0) 2014.07.22
ActionFilter  (0) 2014.07.22
How to migrate Asp.Net MVC  (0) 2014.07.22