Disable caching in an HttpHandler
12/11/2009 Leave a comment
Disable caching in an HttpHandler ,Use this:
context.Response.Clear();
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Cache.SetExpires(DateTime.MinValue);