You must Sign In to post a response.
  • Category: ASP.Net MVC

    Upload files greater than 2GB using MVC

    I want to upload files greater which will more than 2gb
  • #769937
    What type of files you are trying to upload. As other than movie files there will not be 2 GB single files!
    One suggestion break it into the smaller pieces and upload them. and later merge them into one.
    And you are not mentioned what the issue you are facing while doing this.

    Thanks
    Shivshanker Cheral
    "If you share your assets (money etc..) it will decrease, But if you share your knowledge it will increase!!! ".

  • #769939
    we can upload more than 2 GB i.e till 4 GB. Default it allow 30 MB and max is 4 GB by IIS
    what we need to is , at web.confg file you need to add below keys so that it can allow to upload more than 3 GB

    <security>
    <requestFiltering >
    <requestLimits maxAllowedContentLength="4294967295">
    </requestLimits>
    </requestFiltering>
    </security>

    hope it will help you to resolve your requirement

    Thanks!
    B.Ramana Reddy


  • Sign In to post your comments