My web application allows authorized users to upload videos using ASP.NET WebForms FileUpload, which in the past was about 100-200 MB. I had to make some changes web.configso that files of this size could be downloaded.
However, authorized users now want to upload 500 MB + video files
The value is now maxAllowedContentLengthset to 629145600(600 MB).
However, when you upload a video after a while, the page answers:
Page not found
This only happens with large videos, so I know that this problem has something to do with file size.
Why is this happening? And also, should I really increase the limit to 500 MB +? Is there a better way to get such large files on a web server?
source
share