vote up 0 vote down star

I am having an issue with caching the home page of my Asp.Net Mvc App.

All the other pages cache fine using the [OutputCache(Duration=60, VaryByParam="None")] action filter.

The problem is that the home page does not cache. I noticed that if I access the home page via Controller/Action ("Home/Index") then it caches but when accessed via "/" it doesn't work.

Any ideas?

flag

80% accept rate

1 Answer

vote up 4 vote down check

What version of asp.net-mvc are you using? If it's the latest release then you might need to create a new project and copy the Page_Load method from "Default.aspx" which is different in later versions and has a slight change which i think handles caching of "/"....

link|flag
oooh! tricky. where did u hear about this? – Pure.Krome May 21 at 11:58
I was running RTM but I started the project using Preview 5 and I didn't update the default.aspx.cs page. Thank again – Sruly May 21 at 12:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.