Development ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     Application.Lock()
     Application("Counter") = 1
     Application.UnLock()
     Message.Text = "Counter = " & Application("Counter") 
  End Sub