J
Jeff Carver
You need to set a higher size limit in Web.config. For example, to
change it from the default (4 MB, or 4096 KB) to 8 MB:
<configuration>
<system.web>
<httpRuntime maxRequestLength=8192 />
</system.web>
</configuration>
By the way, the O'Reilly site has a great article on file uploading:
http://www.ondotnet.com/pub/a/dotnet/2002/04/01/asp.html
change it from the default (4 MB, or 4096 KB) to 8 MB:
<configuration>
<system.web>
<httpRuntime maxRequestLength=8192 />
</system.web>
</configuration>
By the way, the O'Reilly site has a great article on file uploading:
http://www.ondotnet.com/pub/a/dotnet/2002/04/01/asp.html