我确实喜欢我在许多主题中看到过,比如转到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.
那么我错过了任何解决方案或任何其他步骤吗?