PLTSessionIDCookieName Property

 

Type: String

 

This property is used in conjunction with BrowserHawk’s Page Load Time (PLT) technology to associate a session ID with collected PLT data.

 

Set this property to the name of a cookie that already resides on the user’s machine. BrowserHawk will then retrieve the value stored in the cookie name specified, and insert that value into the SessionID column in the database, along with the recorded PLT data.

 

For example, assume that for each visitor to your site you already have a cookie set in the browser called "SessID" which contains a unique session identifier in that cookie. To have BrowserHawk automatically associate the logged PLT data with each user’s session ID, you simply pass "SessID" as the name of the cookie that BrowserHawk should retrieve the session ID information from, as shown below.

 

Example:

 

<% Set bh = Server.CreateObject("cyScape.browserObj") %>

<html><head><title>My Title</title>

<%

bh.SessionIDCookieName = "SessID"

bh.PltHead

%>

</head>

<body>page goes here</body></html>

 

Note: You must set the value of this property prior to calling the PltHead Method.

 

See Also:

PLTUserIDCookieName Property

PLTSessionID Property

PLTUserID Property

LogDataUserID Property

LogDataUserIDCookieName Property

PltHead Method