HttpRequest.UrlReferrer Property
.NET Framework 3.0
Gets information about the URL of the client's previous request that linked to the current URL.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example displays the value of two properties of the URL that referred the client to the current application.
Uri myUrl = get_Request().get_UrlReferrer();
get_Response().Write("Referrer URL Port: "
+ get_Server().HtmlEncode(String.valueOf(myUrl.get_Port()))
+ "<br>");
get_Response().Write("Referrer URL Protocol: "
+ get_Server().HtmlEncode(myUrl.get_Scheme()) + "<br>");
var myUrl : Uri = Request.UrlReferrer Response.Write("Referrer URL Port: " + Server.HtmlEncode(myUrl.Port) + "<br>") Response.Write("Referrer URL Protocol: " + Server.HtmlEncode(myUrl.Scheme) + "<br>")
Community Additions
ADD
Show: