tags:

views:

46

answers:

2

please any one help me when I upload image i had this error

maximum request length exceeded

+7  A: 

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

Philippe Leybaert
A: 

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.

RandomNoob