1

如果我在 asp.net 页面中使用 Substitution 控件,并在页面中添加以下指令:

<%@ OutputCache Duration="7200" VaryByParam="None" Location="Any" %>

是否会忽略 location 属性,因为在页面上使用 Substitution 控件会使页面只能在服务器上缓存?

4

1 回答 1

2

是的,它将被忽略。Substition.Render 通过 RenderMarkup 调用 HttpResponse.WriteSubstitution 调用 HttpCachePolicy.SetCacheability(HttpCacheability.Server)。

于 2009-06-01T10:30:48.877 回答