Reputation: 25969
Can you disable caching on the client side in a HttpHandler but enabling it on the server side?
Upvotes: 2
Views: 1042
Reputation: 187110
Response.Cache.SetCacheability(HttpCacheability.NoCache) ;
Upvotes: 3