I have tried several ways
 Response.Cache.SetCacheability(HttpCacheability.NoCache); //Cache-Control : no-cache, Pragma : no-cache
    Response.Cache.SetExpires(DateTime.Now.AddDays(-1)); //Expires : date time
    Response.Cache.SetNoStore(); //Cache-Control :  no-store
    Response.Cache.SetProxyMaxAge(new TimeSpan(0, 0, 0)); //Cache-Control: s-maxage=0
    Response.Cache.SetValidUntilExpires(false);
    Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
    Response.ExpiresAbsolute = DateTime.Now.AddDays(-1d);
    Response.Expires = -1500;
    Response.CacheControl = "no-cache";
And in aspx page:
     <%@ OutputCache Location="None"  NoStore="true" VaryByParam="None" %>
I have read many answers in the net and they only work for IE and Firefox and not in chrome.
Thank You in Advance