ASP.NET MVC OutputCache doesn't work for root URI - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T06:19:22Zhttp://stackoverflow.com/feeds/question/323458http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/323458/asp-net-mvc-outputcache-doesnt-work-for-root-uri6ASP.NET MVC OutputCache doesn't work for root URIMorgan Cheng2008-11-27T10:52:20Z2009-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#3252557Answer by Eilon for ASP.NET MVC OutputCache doesn't work for root URIEilon2008-11-28T08:00:41Z2008-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#6069260Answer by Celik for ASP.NET MVC OutputCache doesn't work for root URICelik2009-03-03T15:51:01Z2009-03-03T15:51:01Z<p>using VarByParam="" seems to make it work</p>