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
The RouteData object can access this info:
var controller = RouteData.Values["controller"].ToString(); var action = RouteData.Values["action"].ToString();