up vote 10 down vote favorite
3
share [g+] share [fb]

I encountered the above error message after applying the OutputCache attribute on ActionResult methods with no input parameters - why would I use VaryByParams in this case? Is this a bug in ASP.Net MVC or is there a way of using OutputCache without setting this property?

My big question is, if I have to use VaryByParams, what should I enter for a value if I have no parameters to cache against?

link|improve this question

feedback

1 Answer

up vote 18 down vote accepted

I never found a satisfactory answer for this - basically, you just need to add the VaryByParams property and if you don't have any parameters set it to the magic string "none".

http://msdn.microsoft.com/en-us/library/system.web.ui.outputcacheparameters.varybyparam.aspx

link|improve this answer
5  
Not an empty string. According to MSDN, if no parameters are to be used, the value of VaryByParam should be "none": msdn.microsoft.com/en-us/library/… – bzlm Feb 25 '09 at 21:42
3  
Ah, that's useful to know - I guess that's the problem with good ol' magic strings eh? – Zac Mar 3 '09 at 23:18
feedback

Your Answer

 
or
required, but never shown

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