我确实像我在许多线程中看到的那样,Internet Information Server Manager
然后转到该站点然后Request Filtering
在右侧Edit Feature Settings...
然后我将其设置Maximum allowed content length
为 1000000000,然后重新启动该网站,但它没有用,我尝试的第二种方法是我添加了以下内容:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1000000000" />
</requestFiltering>
</security>
</system.webServer>
在Web.config
网站的文件中,我重新启动了网站,但仍然出现错误Maximum request length exceeded.
,所以我错过了任何解决方案或任何其他步骤吗?