0

I am getting the error Maximum request length exceeded when I am trying to upload a file more than 4 MB in MVC website.

I increased maxRequestLength and maxAllowedContentLength ,but get same error

<requestLimits maxAllowedContentLength="1073741824" />

<httpRuntime maxRequestLength="51200" executionTimeout="600"/>
Ehab
  • 9
  • 2

1 Answers1

0

try this, it is workin my projects

<httpRuntime maxRequestLength="1544096" requestValidationMode="2.0" executionTimeout="55590" />

<requestLimits maxAllowedContentLength="1048576000" />
Fatih Topcu
  • 132
  • 2
  • 3