Hello,
i want to realize a "Upload Portal" in which the user can upload files with a size of max. 500 MB.
The Fileszise of most users will be probably about 300 MB.
At the moment I use FileUpload to realize the "UploadPortal"; and it worked at my local maschine with big files of 500MB.
But at the Sever it doesn't work with files with a size of 100 MB (17 MB works): I'm using IIS 7.
Does it work to upload files of this size with ASP.NET and the FileUpload-Element?
If possible: What do I have to change?
If not possible: Why not? and What is the max. Filesize?
I changed this in the Web.config file:
<httpRuntime
executionTimeout="32000"
maxRequestLength="512000"
requestLengthDiskThreshold="80"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueu ...
Go to the complete details ...