Reputation: 25
What is the difference between using output cache
in view:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Mahmure.WebUI.ViewModels.NewsletterVM>" %> <%@ OutputCache Duration="120" VaryByParam="none" %>
and in controller:
[OutputCache(Duration = 120, VaryByParam = "none")] public ActionResult Index() {
Upvotes: 1
Views: 1918
Reputation: 1039538
In ASP.NET MVC model it is more correct to use the attribute on your controller action because URLs are no longer dictated by views (as it is in classic WebForms) but from routing and it is the controller action that first gets the request and decides whether to fetch it from the cache or not.
Upvotes: 4