boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Cache the Output of the Action Method in ASP.NET MVC

Updated on     Kisan Patel

To cache the output of the action method, we can use OutputCache attribute in the action method of the controller.

[OutputCache(Duration=30)]
public string Index()
{
     return DateTime.Now.ToString();
}

The output of this action method will be cached for 30 seconds from the current date.


ASP.NET MVC

Leave a Reply