I am writing an Authorize filter attribute adn I\'m having trouble figuring out how to get the current url as a string so I can pass it as a parameter to the LogOn action. The g
Try:
var url = filterContext.HttpContext.Request.Url;