Wednesday, 27 September 2017

Max request length exceeded Error.

This issue arises when you have set some value in maxRequestLength and trying to upload a file which is greater than that set value.


maxRequestLength is an int type so we can set it's maximum value equal to int type which is as 2147483647.



Example:-

----------


<system.web>

    <httpRuntime maxRequestLength="2147483647" />
</system.web>

0 comments:

Post a Comment