There\'s a lot of information for building Uris from Controller and Action names, but how can I do this the other way around?
Basically, all I\'m trying to achieve i
I don't believe there is any built-in way to retrieve the previous Controller/Action method call. What you could always do is wrap the controllers and action methods so that they are recorded in a persistent data store, and then when you require the last Controller/Action method, just retrieve it from the database (or whatever you so choose).