Pass query string parameter to UrlHelper.Action method in .net mvc
You just have to decalre your parameter like this:
UrlHelper.Action("login", "Authentication", new { referrer = "Page Name" })
Then get the parameter in your Action:
Request.Params["referrer"]