FileUpload constraints

Discussion in 'ASP.NET / ASP.NET Core' started by jaemzwareco, Mar 29, 2011.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I'm using the FileUpload control, and need to receive files up to 100MB. I've added the following to my web.config, but server is still timing out after just a couple minutes when I try to upload a 75MB file.

    <system.web>
    <!-- override the file size for upload constraint-->
    <httpRuntime executionTimeout="600" maxRequestLength="102400" />
    ...
    </system.web>
     
  2. RayH

    RayH DiscountASP.NET Lackey DiscountASP.NET Staff

    You may want to try to increase the size of the quota for Anonymous ASPNet user in your Control Panel to see if that will help.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page