How to remove cached userCOntrol for OutputCache

  • Thread starter Thread starter ABCL
  • Start date Start date
A

ABCL

Hi All

I have usercontrol on the page that I have added at design Time
and cached it
How can I remove the cached Usercontrol from outputcache.
I want to remove cached version in session start event
I have tried to remove it using
"HttpResponse.RemoveOutputCacheItem(path);" b but it doesn't work

Thanks
 
Hi All

I have usercontrol on the page that I have added at design Time
and cached it
How can I remove the cached Usercontrol from outputcache.
I want to remove cached version in session start event
I have tried to remove it using
"HttpResponse.RemoveOutputCacheItem(path);" b but it doesn't work

Thanks

How about this.

HttpContext.Current.Cache.Remove("KeyName");
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top