如何使用 html 上传按钮上传 5mb pdf 文件?当我尝试上传 5mb 文件时出现最大请求长度超出错误?。出现此问题是因为 Machine.config 文件部分中 maxRequestLength 参数的默认值为4096 (4 兆字节)。所以我尝试更改 webconfig 文件,
<configuration>
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="1200" />
</system.web>
</configuration>
如果我这样使用,我会得到一个现有的连接被远程主机错误强行关闭。我的项目由 IIS7 托管。所以我尝试,
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576" />
</requestFiltering>
</security>
</system.webServer>
这种方式也不允许上传5mb的文件?如何通过 HTML 上传按钮上传 5 mb 文件?