在Web.Config中配置缓存配置文件和在IIS中配置缓存配置文件有什么区别?
如果您在Web.Config中有此功能
<caching>
<outputCache enableOutputCache="true" />
<outputCacheSettings>
<outputCacheProfiles>
<add duration="14800" enabled="true" varyByParam="*"
name="AssetCacheProfile" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
在输出缓存的IIS中没有配置任何内容,它会起作用吗?
如果你添加我在IIS中输出缓存中使用的所有扩展,那会发生什么变化呢?
这是一个使用此缓存配置文件的aspx页面RetrieveBlob.aspx:
<%@ OutputCache CacheProfile="AssetCacheProfile" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RetrieveBlob.aspx.cs"
Inherits="RetrieveBlob" %>