话不多说,直接上解决方法。
修改配置文件 applicationHost.config 具体地址在C:\Windows\System32\inetsrv\config
按照下面的节点进行 添加<serverRuntime uploadReadAheadSize="10485760" /> 10MB大小
具体节点如下:
<location> <system.webServer> <serverRuntime uploadReadAheadSize="10485760" /> </system.webServer> </location>
然后在项目的web.config下找到system.webServer节点 按照下面的节点进行添加
<security> <requestFiltering> <!--10MB--> <requestLimits maxAllowedContentLength="10485760" /> </requestFiltering> </security>
我是这样解决的,如果有其他的更好的方法欢迎大家一起讨论。
原文地址:https://www.cnblogs.com/LMJBlogs/p/9547409.html
时间: 2024-10-28 09:58:57