最佳答案
我将 maxAllowedContentLlength 更改为
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="5024000000" />
</requestFiltering>
</security>
在我的 web.config 中,但是当在 IIS7上运行时,我得到这个错误:
“ maxAllowedContentLlength”属性无效。不是有效的无符号整数
但是当我在 VS 服务器上运行时,它运行正常,没有任何错误。
如何配置我的网站,以允许上传文件的500 MB 大小,没有这个问题在 IIS7?