Get ActionResult of another controller-action?
问题 I want to store items in the application cache so it's lazy loaded from the main layout view. I also want to be able to invalidate the cache, so if it's invalid, next time when the items-collection is requested, it's reloaded to that cache location. Here's what I've implemented: In the controller: protected IEnumerable<Slide> CachedSlides { get { return HttpContext.Application[SlidesCacheKey] as IEnumerable<Slide>; } set { HttpContext.Application[SlidesCacheKey] = value; } } private void