Change Http Cache Policy (VB.net) : Response Cache « Response « ASP.Net






Change Http Cache Policy (VB.net)

<%@ Page Language="vb" %>
<html>
   <head>
      <title>Cacheing Output in ASP.NET</title>
      <script runat="server">
         Sub Page_Load()
            Dim myCachePol As HttpCachePolicy
            myCachePol = Response.Cache
            myCachePol.SetExpires(DateTime.Now.AddSeconds(120))
            myCachePol.SetCacheability(HttpCacheability.Public)
            Message.Text = Now.ToString()
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
</body>
</html>
           
       








Related examples in the same category

1.Removing cache items (VB.net)
2.Cache control: Expires (VB.net)
3.Cache control: Expires Absolute (VB.net)