Upload file more than 4GB by jquery to asp.net MVC

半腔热情 提交于 2019-12-11 20:05:27

问题


Im working on an asp mvc application . In my application I want to upload file more that 4GB or 5 GB to server side but jquery cant upload more that 6MG . Thanks any one who help me!

above code are for the application


回答1:


this settings for 1GB, you can adjust value upon your request in web config

 <system.web>
    <httpRuntime maxRequestLength="1048576" />
    ...

<system.webServer>
    <security>
      <requestFiltering>
         <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
   </security>

maxRequestLength is in KB
maxAllowedContentLength is in Byte



来源:https://stackoverflow.com/questions/27171548/upload-file-more-than-4gb-by-jquery-to-asp-net-mvc

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!