asp.net 页面后退清空缓存

 

    Response.Expires = 0;
            Response.Buffer = true;
            Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1);
            Response.AddHeader("pragma", "no-cache");
            Response.CacheControl = "no-cache";

原文地址:https://www.cnblogs.com/freexiaoyu/p/1797863.html