This question is locked. New answers and comments are not allowed.
Hi,
I am trying to optimise my site and marked my actions with something like this:
I am trying to optimise my site and marked my actions with something like this:
[OutputCache(Duration=int.MaxValue, VaryByParam="none")]My actions look like this:
[MembersOnlyAttribute]
[GridAction]
[Transaction]
public ActionResult Index()
{
return View(CategoryRepository.GetCategories());
}
When I use something like this:
[OutputCache(Duration=int.MaxValue, VaryByParam="none")]
The filter and sorting functions stop working (I am doing things server side via the telerik grid linq engine). Is this intended? Is there anything I can do to fix this? Thanks.
Christian