I looked online and couldn't find a proper explanation.
Link I checked: Difference
This link says:
If you are trying to upload large files (like images or documents) you need to be aware that you may need to adjust your maxRequestLength. Then if files are really big you may need to adjust the maxAllowedContentLength.
But both sentence mean the same and I am confused.
Another link: Difference
This says
The maxRequestLength indicates the maximum file upload size supported by ASP.NET, the maxAllowedContentLength specifies the maximum length of content in a request supported by IIS. Hence, we need to set both maxRequestLength and maxAllowedContentLength values to upload large files.
My Question is: If I have a file upload of 10GB. Is my content 10GB or is my FileSize 10GB? I don't understand what the difference is between file size being uploaded and the content size?
Bottom Line: Please tell me in layman terms if I have a file upload of 10GB how these two parameters come into picture.