ASP.NET MVC上传文件 未显示页面,因为请求实体过大。解方案
在Dropzone中设置 maxFilesize: 350, //MB
但上传的文件没有到最大限定350MB,就报出来 未显示页面,因为请求实体过大的错误
Web.config中设置 maxAllowedContentLength大小
</system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000">
</requestLimits>
</requestFiltering>
</security>
</system.webServer>
问题解决!