File: D:/web/hyperflight/! bs3/cookie-test.asp
<html>
<head>
</head>
<body>
<h1>Cookie Test</h1>
<%
Response.Write "Session ID: " & Session.SessionID & "<br>"
Response.Write "<br>"
Response.Write "Session Test Value: " & Session("SessionTestValue") & " ("
If Session("SessionTestValue") = "123" Then
Response.Write "same session used"
Else
Response.Write "new session created"
End If
Session("SessionTestValue") = "123"
Response.Write ")<br>"
%>
<br>
<a href="https://www.hyperflight.co.uk/cookie-test.asp">Go to www.hyperflight.co.uk</a>
<br><br>
<a href="https://hyperflight.itpartnership.com/cookie-test.asp">Go back to hyperflight.itpartnership.com</a>
</body>
</html>