Capturing Session Tokens

CyberStore returns the session token as the SessionToken query-string variable. A connected application stores the token in its application session.

If Len(Request.QueryString("SessionToken")) > 0 Then
    Session("SessionToken") = Request.QueryString("SessionToken")
End If

This site uses Just the Docs, a documentation theme for Jekyll.