TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
How to Configure in web.config to Upload Large File in ASP.NET
Mukesh Kumar
Nov 04
2015
Code
1.4
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
you need to increase the size of allow content length. Try add this in web.config (in bytes):
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=
"1073741824"
/>
/requestFiltering>
</security>
</system.webServer>
web.config
ASP.NET
configuration setting for upload large file