Hello,
We have found error while exceeding maximum request length. It happens when we send request to the server.
Can anyone please help with the technical solution for this.
Thank you
Printable View
Hello,
We have found error while exceeding maximum request length. It happens when we send request to the server.
Can anyone please help with the technical solution for this.
Thank you
Hello,
I was facing the same problem, I also tried to resolve this by myself but unable to do so. However, this company MSP IT Concepts (www.mspconcepts.com) resolved this for me. They have excellent ASP.NET development team which helped me fix this and many other bugs in my ASP.NET related stuff. you may want to get in touch with [email protected] I'm sure they would be able to help. They are professionals & quick to provide accurate solution for your web development projects.
Thanks
If you are using IIS for hosting your application, then the default upload file size if 4MB. To increase it, please use this below section in your web.config -
For IIS7 and above, you also need to add the lines below:Code:<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
Note: maxAllowedContentLength is measured in bytes while maxRequestLength is measured in kilobytes, which is why the values differ in this config example. (Both are equivalent to 1 GB.)Code:<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>