これらのキャッシュヘッダーが設定されています
Context.Response.Cache.SetExpires(DateTime.Now.Add(refresh));
Context.Response.Cache.SetMaxAge(refresh);
Context.Response.Cache.SetCacheability(HttpCacheability.Private);
Context.Response.Cache.SetValidUntilExpires(true);
Context.Response.ContentType = "text/html";
ページが更新されたときにキャッシュが機能するようにするには、他に何か設定する必要がありますか?