Upload Large files(1GB)-ASP.net

后端 未结 8 1426
北海茫月
北海茫月 2020-12-05 21:08

I need to upload large files of at least 1GB file size. I am using ASP.Net, C# and IIS 5.1 as my development platform.

8条回答
  •  北海茫月
    2020-12-05 22:11

    Setting maxRequestLength should be enough for uploading files larger than 4mb, which is the default limit for HTTP request size. Please make extra sure that nothing is overriding your config file.

    Alternatively you can check the async upload provided by Telerik, which uploads files by 2mb chunks and effectively can bypass the ASP.NET request size limitation.

提交回复
热议问题