Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace FiltersDemo.Controllers
{
public class HomeController : Controller
{
//Action Filter
[OutputCache(Duration = 10)]
public string CurrentTime()
{
return DateTime.Now.ToString("T");
}