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:
When calling the GetExtendedBrowser method to check various settings, the referrer information is not longer available to your page in the Request object. Therefore if you need the referrer information in your script you should get it from this Referrer property.
Unlike most other properties used by GetExtendedBrowser, the referrer property is set regardless of whether the user's JavaScript is disabled.
Note this property is only set when there is a referrer and you called the AddProperties method to add the Referrer as a property to check.
This field automatically filters out and removes any BrowserHawk reserved token names and values that may otherwise appear in the referrer. For example, bhcp=1 or bhqs=1.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Referrer");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Referrer: <% Response.Write(extBrow.Referrer); %>
</html>