How do I setup caching for a Page in ASP.NET and give it a cache key dependency? I am familiar how to do this with a UserControl, I set a Partial Caching attribute and then set

this.CachePolicy = new CacheDependency(..)

How would I do this for a Page? It does not have a CachePolicy object, thanks.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Found the answer:

private void Page_Load(object sender, System.EventArgs e) { Response.AddCacheItemDependency("Pages"); }

where "Pages" is the cache key dependency.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.