Session Cookie ASP.Net

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     If Application.Count > 0 Then
        Application.RemoveAt(0)
        Message.Text = "The item at index 0 was removed."
     Else
        Message.Text = "The item at index 0 does not exist."
     End If
  End Sub