views:

111

answers:

1

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

+3  A: 
Response.Cache.SetCacheability(HttpCacheability.NoCache) ;
rahul