.NETGURU
Output caching and file based expiration
Messages   Related Types
This message was discovered on ASPFriends.com 'aspngcache' list.


jwiesen@longandfoster.com
I have a page that is using fragment caching via a user control. Everything
is working fine. I would like however, to expire the fragment from cache
based on an XML file sitting on the local drive. I want the fragment to stay
in cache as long as this file remains unchanged. As soon as the XML file is
updated, I was the fragment to expire, and be recreated. The only thing I
can seem to find is setting an explicit duration for the expiration. Is it
even possible to do what I'm asking? If it is, can someone point me in the
direction of an example? I can't seem to find anything. Thanks in advance
for any help.

----------------------------------------------------------------------------
---
Jim Wiesen
Web Applications Developer
Long & Foster Real Estate
Click here to reveal e-mail address <mailto:Click here to reveal e-mail address>
http://www.longandfoster.com
Reply to this message...
 
    
G. Andrew Duthie
The following is code that I've tested to expire a cached user
control based on changes to the control's .ascx file:

<%@ Control Language="vb" %>
<%@ OutputCache VaryByControl="none" Duration="1200" %>
<script runat="server">
Sub Load(Sender As Object, e As EventArgs) Handles
MyBase.Load
Message.Text = DateTime.Now.ToString

Page.Response.AddFileDependency(Server.MapPath("Nav.ascx"))
End Sub
</script>
<asp:label id="Message" runat="server">Test</asp:label>

To adapt this to your situation, you'd need only change the file
name:

<script runat="server">
Sub Load(Sender As Object, e As EventArgs) Handles
MyBase.Load
Message.Text = DateTime.Now.ToString

Page.Response.AddFileDependency(Server.MapPath("MyFile.xml"))
End Sub
</script>

Should work fine. If you want the cache to be dependent on more
than one file, there's also an AddFileDependencies method as
well.

hth,

--
G. Andrew Duthie
Graymad Enterprises, Inc.
http://www.graymad.com
Click here to reveal e-mail address
Author, Microsoft ASP.NET Step By Step
http://www.amazon.com/exec/obidos/ASIN/0735612870/

[Original message clipped]

Reply to this message...
 
 
System.DateTime
System.EventArgs
System.Messaging.Message
System.Web.UI.Page




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification