asp.net-mvchttp-redirectreferrer

How do I get the referrer URL in an ASP.NET MVC action?


How do I get the referrer URL in an ASP.NET MVC action? I am trying to redirect back to the page before you called an action.


Solution

  • You can use Request.UrlReferrer to get the referring URL as well if you don't like accessing the Request.ServerVariables dictionary directly.