Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

Application Keys

<%@ Page Language="vb" %> <html>    <head>       <script runat="server">          Sub Page_Load()      Dim Key As String      Message.Text = "Application Keys:"      For Each Key in Application.Keys         Message.Text &= "<br/>Key:" & Key         Message.Text &= "<br/>Value:" & Application(Key)      Next          End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html>