以下代码在局部视图中不起作用。
<%
// Pages always expire at midnight.
Response.Cache.SetExpires(DateTime.Today.AddHours(24));
if (variable > 0)
{
Response.Cache.SetCacheability(HttpCacheability.ServerAndPrivate);
}
else
{
Response.Cache.SetCacheability(HttpCacheability.Public);
}
%>
谁能告诉我为什么?部分视图永远不会被缓存,也没有明显的原因。我应该编写代码来激活缓存吗?如何?