[3] Development/MVC(ASP.NET with C#)
.NET MVC 대용량 파일 업로드
코볼
2017. 8. 23. 16:39
728x90
반응형
SMALL
파일 업로드 시 파일 크기 제한에 걸릴때
Web.config 파일에서 아래 음영 부분의 숫자를 변경해 주면 됨
(초록색 부분은 게시판작성시 테그를 POST로 넘길때 문제가 생기면 4.0 => 2.0 으로 변경)
[대용량 파일 업로드]
<system.web>
<httpRuntime maxRequestLength="1048576" requestValidationMode="2.0" executionTimeout="3600" targetFramework="4.5.2" />
</system.web>
[허용되는 최대 콘텐츠 길이(바이트)]
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
728x90
반응형
LIST