Referrer Property (.NET)

 

Type: String

 

Returns the URL of the referring page, if any.

 

Tip: When calling the GetExtendedBrowser method you will lose the referrer information normally available with Request("HTTP_REFERRER"). Therefore if you need to access the referrer information you should do so through this property instead of the Request object.

 

Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.

 

Special notes for this property:

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("Referrer");

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>

Referrer: <% Response.Write(extBrow.Referrer); %>

</html>