Folks:
My ASP.NET MVC 1.0 application is more like a workflow.
Means: Parent controller's action method (authentication) --> Child 1 Action method --> Child 2 Action method --> Child n Action
Now once the visitor completes the Authentication through the parent controller's action method he can manupulate the URL and jump directly to the child 2 action method. We want to avoid this and in this case we want them to a error page.
How can we implement to restrict the user from jumpin from 1 to another action method ?