[Asp.net] 대용량 파일 업로드

[Asp.net] 대용량 파일 업로드

ASP.NET Framework에서 POST방식으로 업로드 하는 파일의 default 크기는 4MB이다.

maxRequestLength 에러가 발생할 경우, web.config에서 아래와 같이 수정 또는 추가 하면 된다.

executionTimeout="180"

maxRequestLength="32768" // 파일크기

useFullyQualifiedRedirectUrl="false"

minFreeThreads="8"

minLocalRequestFreeThreads="4"

appRequestQueueLimit="100"/>

from http://dev-aidenlim.tistory.com/23 by ccl(A) rewrite - 2020-03-06 08:21:09

댓글

이 블로그의 인기 게시물

🐱‍💻Installing IIS Components Windows 10

2017년 1월 스타트업에서 구인할때 주로 원하는 개발 기술

Creating Cascading DropDownLists in ASP.Net (연속적인 셀렉트박스...