Development ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      
         Sub Page_Load()
          Application.RemoveAll()
          Application.Set("TotallyNewVariable","Test!")
          myMessage.Text = "First: " + Application("TotallyNewVariable") + "
"
          Application.Set("TotallyNewVariable","Test again!")
          myMessage.Text = myMessage.Text & "First after Set: " + _ 
        Application("TotallyNewVariable") + "
"
         End Sub