Lieven Cardoen
Lieven Cardoen

Reputation: 25969

Disable caching on the client side in ASP.NET

Can you disable caching on the client side in a HttpHandler but enabling it on the server side?

Upvotes: 2

Views: 1042

Answers (1)

rahul
rahul

Reputation: 187110

Response.Cache.SetCacheability(HttpCacheability.NoCache) ;

Upvotes: 3

Related Questions