Response.AddCacheItemDependencies : Response « Page Lifecycle « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Page Lifecycle » Response 
5.9.8.Response.AddCacheItemDependencies
<%@ Page Language="vb" %>
<%@ OutputCache Duration="300" VaryByParam="None" %>
<html>
   <head>
      <title>Adding cache dependencies in ASP.NET</title>
      <script runat="server">
         Sub Page_Load()
            Dim myArrayList As New ArrayList
            myArrayList.Add("Key1")
            myArrayList.Add("Key2")
            Response.AddCacheItemDependencies(myArrayList)
            myMessage.Text = DateTime.Now()
         End Sub
         Sub Button1_Click(sender As Object, e As EventArgs)
            Cache("Key1""foo"
         End Sub
         Sub Button2_Click(sender As Object, e As EventArgs)
            Cache("Key2""bar"
         End Sub
      </script>
   </head>
<body>
   <form runat="server">
      <asp:label id="myMessage" runat="server"/>
      <asp:button id="Button1" text="Change Key 1" onClick="Button1_Click" runat="server"/>
      <asp:button id="Button2" text="Change Key 2" onClick="Button2_Click" runat="server"/>
   </form>
</body>
</html>
5.9.Response
5.9.1.Use Response.Write to output data from a database
5.9.2.Response.ContentType
5.9.3.Display all controls on a page
5.9.4.Use Response.Redirect to transfer to another aspx file (C#)
5.9.5.Submit a named parameter via POST
5.9.6.Displaying the HTTP headers collection in ASP.NET
5.9.7.Displaying URL information in ASP.NET
5.9.8.Response.AddCacheItemDependencies
5.9.9.Adding a cache dependency in ASP.NET
5.9.10.Response.AddFileDependencies
5.9.11.Response.AddFileDependency
5.9.12.Response.AppendHeader
5.9.13.Response.AppendToLog
5.9.14.Response.ApplyAppPathModifier
5.9.15.Response.BinaryWrite
5.9.16.Response.BufferOutput
5.9.17.Response.Expires
5.9.18.Response.ExpiresAbsolute
5.9.19.Response.Charset
5.9.20.Response.ClearContent
5.9.21.Response.ClearHeaders()
5.9.22.Response.ContentEncoding
5.9.23.Response.End()
5.9.24.Response.IsClientConnected
5.9.25.Response.Output
5.9.26.Response.PICS
5.9.27.Response.RemoveOutputCacheItem
5.9.28.Response.StatusCode
5.9.29.Response.SuppressContent
5.9.30.Response.Write
5.9.31.Response.WriteFile
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.