Session Cookie ASP.Net

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     Application.RemoveAll()
     Application("GetKeyTest") = "Got it!"
           Message.Text = "Key of Application(0) = " & Application.GetKey(0) & _
    "
(Should be GetKeyTest)"
  End Sub