User-1330468790 posted
Hi dlchase.
First of all, you should check the actual size of the file. If it is 50 MB, which is less than 80000000 bytes, then you should consider checking
maxRequestLength attribute of the "httpruntime" node (under the
<system.web> node).
In short, the maxRequestLength indicates the maximum file upload size supported by
ASP.NET while the maxAllowedContentLength specifies the maximum length of content in a request supported by
IIS.
Therefore, we need to set both maxRequestLength and
maxAllowedContentLength values if we want to upload large files.
You could refer to this link for more details.
Which gets priority, maxRequestLength or maxAllowedContentLength?
Hope helps.
Best regards,
Sean