ASP.NET by default allows the maximum file size upload to be 4 MB. If you use a third-party ASP.NET File Upload to upload large files and you receive a notification that the upload has failed due to the maximum file size limit, then the respective component does not support large file uploads.
In order to override the maximum file size restriction, you need to modify the web.config file and enable the file upload process to handle larger files. With RadAsyncUpload you can quickly upload files over 4 MB. RadAsyncUpload helps you overcome the 4 MB file size upload limitation in ASP.NET by dividing the large files into smaller chunks and uploading them subsequently. You can control the size of the chunks and thus the number of requests to the server required to upload the file, which can improve your application's performance.
Use your browser's Developer Tools to monitor the change in the number of requests to the server, when you change the size of the chunks the AsyncUpload divides the large files into smaller chunks in order to surpass the ASP.NET limitation of 4MB.
Check out the demo to see how Telerik's ASP.NET Upload control enables you to easily upload large files in ASP.NET without modifying the value in the web.config file. Our online documentation provides more details how to upload large files with RadAsyncUpload.