gavss
gavss

Reputation: 25

ASP.NET MVC View and Controller Output Caching

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

Answers (1)

Darin Dimitrov
Darin Dimitrov

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

Related Questions