Click here to Skip to main content
Licence 
First Posted 29 Jun 2005
Views 70,607
Downloads 605
Bookmarked 54 times

Setting up Web.config to allow uploading of large files by ASP .NET applications

By Caio Proiete | 29 Jun 2005
This article shows how to setup Web.config to allow uploading of files larger than 4 MB by ASP.NET applications.
4 votes, 16.7%
1
2 votes, 8.3%
2
3 votes, 12.5%
3
4 votes, 16.7%
4
11 votes, 45.8%
5
3.34/5 - 24 votes
μ 3.38, σa 2.73 [?]

Introduction

During the construction of an intranet application that allows users to upload documents and share information between users, I noticed that when a user tries to upload files that are larger than 4 MB, he is asked for the user/password and even if he enters the correct user/password, the file is not uploaded, and he gets a HTTP 401.1 error.

Of course, this should not be an article, but CodeProject doesn't have a "quick tip section"-like, so here it goes.

The problem

By default, Machine.config is configured to accept HTTP Requests upto 4096 KB (4 MB) and it is reflected in all your ASP.NET applications. You can change the Machine.config file directly, or you can change only the Web.config file of the application(s) you want to.

The solution

Open your Web.config file, and just below the <system.web> tag, add the following tag:

<httpRuntime 
executionTimeout="90" 
maxRequestLength="4096" 
useFullyQualifiedRedirectUrl="false" 
minFreeThreads="8" 
minLocalRequestFreeThreads="4" 
appRequestQueueLimit="100" 
enableVersionHeader="true"
/>

Now, just take a look at the maxRequestLength="4096" attribute of the <httpRuntime> tag. As you may have realized, all you need to do is change the value to some other value of your choice (8192 for 8 Mb, 16384 for 16 Mb, 65536 for 64 Mb, and so on...).

That's it. I hope it is useful to you.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Caio Proiete

Software Developer (Senior)

Portugal Portugal

Member

Follow on Twitter Follow on Twitter
Caio Proiete has been programming for over 10 years, having first started with Clipper Summer'87.
 
He loves software development and reverse engineering. Today his main development technologies includes ASP .NET MVC, jQuery, HTML5, Silverlight, and WCF. He also has the following titles:
 
MVP - Microsoft Most Valuable Professional;
MCT - Microsoft Certified Trainer;
MCPD - Microsoft Certified Professional Developer;
MCTS - Microsoft Certified Technology Specialist;
MCSD - Microsoft Certified Solution Developer;
MCDBA - Microsoft Certified Database Administrator.
 
Technical blog:
http://caioproiete.net

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberAmit Kumar Tiwari17:49 28 Dec '10  
Generallogin.aspx PinmemberAjay Kale New1:13 27 Sep '10  
GeneralUseful Pinmembermbaocha17:53 6 May '09  
GeneralUploading files greater then 5 mB and timeout issue Pinmemberdigitally_urs3:56 24 Jul '05  
GeneralCommon Problem Pinmemberoykica5:57 30 Jun '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120206.1 | Last Updated 29 Jun 2005
Article Copyright 2005 by Caio Proiete
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid