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
Why would you need to construct ActionLink from a url ? The purpose of ActionLink is just the opposite to make a url from some data. So in your page just do:
var fullUrl = Request.UrlReferrer.ToString(); Back