Wednesday, October 13, 2010

ASP.NET Upload Error: Maximum request length exceeded

Add this to your web.config file.

<configuration>
<system.web>
<httpRuntime maxRequestLength="32768" />
</system.web>
</configuration>

No comments:

Post a Comment