8

我正在尝试将以下内容添加到我的 webconfig

<system.web>
    <applicationPool maxConcurrentRequestsPerCPU="5000" maxConcurrentThreadsPerCPU="0" requestQueueLimit="5000"/>
</system.web>

但是,当我这样做时,会出现以下错误。

The configuration section 'applicationPool' cannot be read because it is missing a section declaration 

如何为此添加部分声明?

4

2 回答 2

4

我不相信您可以将其添加到 web.config 文件中。它应该在您的 Aspnet.config 文件中。

Web 设置架构

于 2012-11-19T17:18:29.063 回答
0

我认为您可以将其设置为覆盖 pr。应用程序下的部分

<system.webServer><httpRuntime>

<system.webServer><serverRuntime>

您可以进入 IIS 并在配置编辑器下的站点检查

于 2016-03-23T10:43:48.207 回答