please any one help me when I upload image i had this error
maximum request length exceeded
please any one help me when I upload image i had this error
maximum request length exceeded
You can increase the maximum length of requests in web.config, under <system.web>
:
<httpRuntime maxRequestLength="100000" />
This example sets the maximum size to 100MB
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.