I want a MVC Action(say DoStuff()) to be called only via RedirectToAction method from another action.
I want to restrict calling this action "DoStuff" from browser urls.
I tried ChildActionOnly and NonAction.
But both failed. How do i achieve this?