When I upload an image I had this error:
maximum request length exceeded
How can I fix this problem?
Add the following to your web.config file:
<configuration> <system.web> <httpRuntime maxRequestLength ="2097151"/> </system.web> </configuration>
This sets it to 2GB. Not certain what the max is.
2.1m questions
2.1m answers
60 comments
57.0k users