6
Reply

how to fix error maximum request length exceeded on mvc 5

Ask a question
nguyen hung

nguyen hung

8 years ago
1.3k
1
my web was error maximum request length exceeded when i upload image over 4mb,i had tried many way to fix wweb.config but it still errr.here is my last config in my web.config but it throw same errror.
<system.web>
<httpRuntime targetFramework="4.5" maxRequestLength="100000"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>

Answers (6)