Although having set the MaxRequestLength
and maxAllowedContentLength
to the maximum possible values in the web.config
section, ASP.Net Core does not allow me to upload files larger than 134,217,728 Bytes
. The exact error coming from the web server is:
An unhandled exception occurred while processing the request.
InvalidDataException: Multipart body length limit 134217728 exceeded.
Is there any way to work this around? (ASP.Net Core)
See Question&Answers more detail:os