IT/.NET
업로드 파일 싸이즈 지정
SJ..
2011. 10. 28. 00:08
업로드 할 때 지정된 파일 싸이즈를 넘기면, 다음의 예외가 발생한다.
System.Web.HttpException: Maximum request length exceeded
해결 방법은 web.config의 sysem.web 부분에 다음을 추가 하면 된다.
<httpRuntime maxRequestLength="최대 크기(KB)" />
(기본은 4MB)
System.Web.HttpException: Maximum request length exceeded
해결 방법은 web.config의 sysem.web 부분에 다음을 추가 하면 된다.
<httpRuntime maxRequestLength="최대 크기(KB)" />
(기본은 4MB)