Mega Code Archive

 
Categories / ASP.Net Tutorial / Cache
 

Using a Sliding Cache Expiration Policy

The cache duration is set to 15 seconds.  <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <script runat="server">     protected void srcProducts_Selecting(object sender, SqlDataSourceSelectingEventArgs e)     {         lblMessage.Text = "Selecting data from database";     } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>DataSource Sliding Cache</title> </head> <body>     <form id="form1" runat="server">     <div>          <asp:Label         id="lblMessage"         EnableViewState="false"         Runat="server" />     <asp:GridView         id="grdProducts"         DataSourceID="srcProducts"         Runat="server" />     <asp:SqlDataSource         id="srcProducts"         EnableCaching="True"         CacheExpirationPolicy="Sliding"         CacheDuration="15"         SelectCommand="SELECT * FROM Products"         ConnectionString="<%$ ConnectionStrings:Products %>"         OnSelecting="srcProducts_Selecting"         Runat="server" />     </div>     </form> </body> </html>