if you want only one specific action to be received from the server each time using
[OutputCache(NoStore = true, Duration = 1)]
as an attribute of your action, for example
[HttpGet] [OutputCache(NoStore = true, Duration = 1)] public ActionResult Index() { ........ }
source share