Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

Application UnLock()

<%@ Page Language="vb" %> <html>    <head>       <script runat="server">   Sub Page_Load()      Application.Lock()      Application("Counter") = 1      Application.UnLock()      Message.Text = "Counter = " & Application("Counter")    End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html>