我正在开发一个asp mvc应用程序。在我的应用程序中,我想将更多4GB或5GB的文件上传到服务器端,但jquery无法上传更多的6MG。 谢谢任何帮助我的人!
以上代码适用于应用程序
答案 0 :(得分:0)
此设置为1GB,您可以根据Web配置中的请求调整值
<system.web>
<httpRuntime maxRequestLength="1048576" />
...
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
maxRequestLength
以KB为单位
maxAllowedContentLength
在字节中