views:

47

answers:

0

My web client requires client-side output caching since it makes use of its own Back and Forward buttons (which basically just call the browser back/forward buttons).

The issue I'm having, however, is (of course) when the user signs out of the app. The client-side output cache remains so anyone can click the "back" button and it appears to be signed in again. I've researched a few solutions, but most involve server-side output caching or no output caching at all.

I've had success with server caching and HttpResponse.RemoveOutputCacheItem, but unfortunately I need the client side caching.

Is it at all possible to clear this client side output cache upon logging out?