[3] Development/ASP.NET
File Upload 할때 파일 크기를 최대 사이즈로 설정
코볼
2016. 12. 14. 15:57
728x90
반응형
SMALL
web.config 에 설정
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
출처 : http://stackoverflow.com/questions/3853767/maximum-request-length-exceeded
728x90
반응형
LIST