OutputCache Location=Client does not appear to work
I am trying to use the OutputCache attribute in my MVC app and it doesn't appear to work when I use OutputCacheLocation.Client : public class HomeController : Controller { [OutputCache(Duration=15, Location=OutputCacheLocation.Client)] public ActionResult Client() { ViewBag.Message = "The current time is " + DateTime.Now.ToString("hh:mm:ss"); return View(); } [OutputCache(Duration=15, Location=OutputCacheLocation.Any)] public ActionResult Any() { ViewBag.Message = "The current time is " + DateTime.Now.ToString("hh:mm:ss"); return View(); } } The first one does not cache. I hit the page every