为了不让网页出现“后退”,我用了
Response.Expires = 0;
          Response.Buffer = true;
          Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1);
          Response.AddHeader("pragma", "no-cache");
          Response.CacheControl = "no-cache";
来禁止缓存。
但是我发现两个页面很相似,但是有个就可以直接返回,另一个就显示“网页过期”。
那“网页已经过期”这种警告是在什么情况下出现的呢?