admin
-
4/11/2006 7:23:50 PM
Re: Size of Upload Files
Hello,
if you get an error saying the request is too long, you may need to set the following option in the web.config file:
<system.web>
...
<httpRuntime maxRequestLength="100000" />
</system.web>
The value is in kilobytes (100 MB in this case).
Best Regards,
|