Problem with .NET Upload

  • Thread starter Thread starter Roger
  • Start date Start date
R

Roger

Hi,
Anyone know why an upload would just give up? I'm running an upload page
that seems to stop processing after 2 minutes
 
By default, ASP.NET limits the upload file size to 4MB. You can change it in
your web.config or machine.config:

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

The length is in KBs, so the above makes it 8MB.

HTH,
Donald Xie
 
Back
Top