Store data in the Cache (VB.net) : Cache « Session Cookie « ASP.Net






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>
           
       








Related examples in the same category