Session Cookie ASP.Net

<%@ Page Language="vb" %>

   
      
         Sub Page_Load()
     Application.Clear()
     Application("foo") = "Hello, "
     Application("bar") = "World!"
     Message.Text = "The Application collection contains " & _
        Application.Count & " items.  "
        Dim I as Integer
        For I = 0 To Application.Count - 1
           Message.Text &= Application(I)
        Next
         End Sub