我用C#(ASP.NET MVC)创建了一个应用程序,它在Visual Studio中运行良好,但是当我在IIS中安装它时,对ajax的调用仅返回2033个字符。
我已经把它放在web.config
中了(但是不起作用):
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="500000000" />
</requestFiltering>
</security>
<system.web>
<httpRuntime maxRequestLength="500000000" executionTimeout="120" />
</system.web>
有人可以帮我吗?
答案 0 :(得分:0)
您正在使用哪个版本的IIS?我怀疑它低于8,可能是7或7.5,那么此问题是已知的并且与IIS有关。 更好地使用升级版。