Mega Code Archive

 
Categories / ASP.Net / Session Cookie
 

Store data in the Cache (VB net)

<%@ Page Language="vb" %> <html>    <head>       <title>Cache property example</title>       <script runat="server">          Sub Page_Load()             Cache("Name") = "Joe"             Cache("Age") = 42             Message.Text = CStr(Cache.Item("Name")) & " is " & _                CStr(Cache("Age")) & " years old."          End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html>