Disable caching in an HttpHandler


Disable caching in an HttpHandler ,Use this:

context.Response.Clear();
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Cache.SetExpires(DateTime.MinValue);

Unknown's avatarAbout bpostaci
Escalation Engineer in Microsoft.

Leave a comment