HttpRequest.UrlReferrer Property
.NET Framework 2.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>")
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: