The maxRequestLength limit is set to 4M(4096) by the httpRuntime section in machine.config file. You can change this setting to affect all applications on your site. Or you can override it by changing your web.config file: <configuration> 
<system.web> 
<httpRuntime maxRequestLength="10000" 
useFullyQualifiedRedirectUrl="true" 
executionTimeout="45"/> 
</system.web> 
</configuration>