Use OuputCache
//Enable cahe //[OutputCache(Duration =50, Location = OutputCacheLocation.Server, VaryByParam ="")] //Disable cahe [OutputCache(Duration = 0, VaryByParam = "", NoStore = true)] public ActionResult Index() { return View(); }
Last updated 4 years ago