我在 ASP.Net 中使用文件上传控件,遵循以下博客方法。
http://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net.aspx
machine.config 中设置了 4MB 默认值,但您可以在 web.config 中覆盖它。例如,要将上传限制扩大到 20MB,您可以这样做:
<system.web>
<httpRuntime executionTimeout="240" maxRequestLength="20480" />
</system.web>
问题: 如果我们允许用户上传 50-60 MB 的文件,我可以增加请求的长度到什么级别(最大大小)以及对网站的性能影响。