ASP.Net数据检索站点现在由于MS Patch限制键而出错。 尝试将以下部分放入web.config中以增加键数
<appsettings>
<add key="aspnet:MaxHttpCollectionKeys" value="2000"></add>
</appsettings>
添加该部分会导致内部服务器错误'无法读取配置部分'appsettings',因为它缺少部分声明'
知道如何正确添加此部分吗?我在网上尝试了不同的例子,但我无法理解这一点。
答案 0 :(得分:8)
观察标签的情况 - 我非常确定web.configs区分大小写。这是一个完整的web.config,appSettings嵌套在配置...
中<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="aspnet:MaxHttpCollectionKeys" value="2000" />
</appSettings>
</configuration>