Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

Application Clear()

<%@ Page Language="vb" %> <html>    <head>       <script runat="server">          Sub Page_Load()      Application.Clear()      Message.Text = "There are " & Application.Count & _         " items in the Application collection."          End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html>