Session Cookie ASP.Net

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     Application.Lock()
     Application("Counter") = Application("Counter") + 1
     Application.UnLock()
     Message.Text = "Counter = " & Application("ounter") 
  End Sub