问题
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 KBmaxAllowedContentLength is in Byte
来源:https://stackoverflow.com/questions/27171548/upload-file-more-than-4gb-by-jquery-to-asp-net-mvc