Sessions ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      
         Sub Page_Load()
            If Session.IsNewSession Then
               'Session("foo") = "foo"
               Message.Text = "The current Session (SessionID: " & _
                  Session.SessionID & ") was created with this request."
            Else
               Message.Text = "The current Session (SessionID: " & _
                  Session.SessionID & ") existed prior to this request."
            End If
         End Sub