ASP.NET MVC OutputCache doesn't work for root URI - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T06:19:22Z http://stackoverflow.com/feeds/question/323458 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/323458/asp-net-mvc-outputcache-doesnt-work-for-root-uri 6 ASP.NET MVC OutputCache doesn't work for root URI Morgan Cheng 2008-11-27T10:52:20Z 2009-03-03T15:51:01Z <p>I'm learning ASP.NET MVC and bugged by one issue.</p> <p>In the HomeController, the Index action has OutputCache attribute, but it seems doesn't work.</p> <pre><code>[HandleError] public class HomeController : Controller { [OutputCache(Duration=5, VaryByParam="none")] public ActionResult Index() { ViewData["Title"] = "Home Page" + DateTime.Now; ViewData["Message"] = "Welcome to ASP.NET MVC! " + DateTime.Now; return View(); } } </code></pre> <p>After quite a few minutes trying, I found that it is due to the way I access the action. If I access it through "http://localhost:3573/", the outputcache doesn't work. However, if I access it with "http://localhost:3575/Home/Index", the outputcache works.</p> <p>Anybody know any workaround to make the default controller-action outputcacheable?</p> <p>Thanks.</p> http://stackoverflow.com/questions/323458/asp-net-mvc-outputcache-doesnt-work-for-root-uri/325255#325255 7 Answer by Eilon for ASP.NET MVC OutputCache doesn't work for root URI Eilon 2008-11-28T08:00:41Z 2008-11-28T08:00:41Z <p>Hi Morgan, I think this is a bug in ASP.NET MVC. We have logged the issue in our database and will investigate a fix for this issue.</p> <p>Thanks, Eilon</p> http://stackoverflow.com/questions/323458/asp-net-mvc-outputcache-doesnt-work-for-root-uri/606926#606926 0 Answer by Celik for ASP.NET MVC OutputCache doesn't work for root URI Celik 2009-03-03T15:51:01Z 2009-03-03T15:51:01Z <p>using VarByParam="" seems to make it work</p>