2

当我尝试添加时,我正在尝试在我的网站中实现输出缓存

    <outputCacheSettings>
    <outputCacheProfiles>
        <add name="TwoDay" duration="43200" />
    </outputCacheProfiles>
</outputCacheSettings>

这对我的 webconfig 文件会引发错误

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

我在里面添加了上面的代码

<configuration>

webconfig 中的部分。谁能告诉我我做错了什么?

4

1 回答 1

7

按照MSDN 上的说明,将其放在<caching>部分中的部分中。<system.web>

于 2013-11-13T12:51:32.237 回答