简体   繁体   中英

Upload big files asp.net

I have an ASP.NET WebForms application.

In my page I have the upload file option. I worked with telerik:RadAsyncUpload

Now some browser does not work and I got many bugs from users that the uploader does not work for them.

I look for upload option that work with ASP.NET WebForms application, and the user can upload big files (like 500 MB +-)

What is the best way to do this?

ASP.NET by default allows the maximum file size upload to be 4 MB. If you want to support larger files then you need to set the maxRequestLength property in your web.config file to a larger value (Reference: MSDN )

Alternatively, you can use the ChunkSize property of RadAsyncUpload to first split the file into smaller chunks and upload them separately as shown in this demo

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM