2013-07-27 6 views
0

브라우저 오류 다음했다 :Request.Files mvc asp.net에서 얼마나 많은 요청을 처리 할 수 ​​있습니까? 나는 한 번에 약 18 파일을 업로드

Maximum request length exceeded.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Maximum request length exceeded.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

답변

0

최대 요청 길이의 Web.config에서 설정할 수 있습니다. 기본 크기는 4MB입니다.

<configuration> 
    <system.web> 
     <httpRuntime maxRequestLength="1048576" /> 
    </system.web> 
</configuration> 

자세한 내용은 post을 확인하십시오.

+0

파일 당 파일 크기에 제한이 있습니까? –