Can someone please shed some light into this? An action is decorated this way:
[OutputCache(Duration = 5, VaryByParam = "none")]
public ActionResult MyAction()
{
// DO STUFF HERE...
}
The MyAction invokes a view which has a form (which posts back to the MyAction POSTED-Method). The mechanism (of posting back) works fine. I declare Duration 5, meaning 5 seconds (or not?). So after 5 seconds if call it again
http://myAddress/MyController/MyAction
. . . the action is not called! Why? What am i missing? Thanks in advance!