Development ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     If Not Application("foo") Is Nothing Then
        Application.Remove("foo")
        Message.Text = "Item 'foo' was removed."
     Else
        Message.Text = "Item 'foo' does not exist."
     End If
  End Sub