How do I resolve the "maximum request length exceeded" exception?
You can increase the maximum length of requests in web.config, under <system.web>
:
<httpRuntime maxRequestLength="100000" />
This example sets the maximum size to 100 MB.
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.