Code to clear cache in asp.net  

Posted by: Quadtechindia in

Response.Cache.SetNoStore();
Response.Cache.SetCacheability(HttpCacheability.NoCache);

write this code in page load
add using System.Web;