代码之家  ›  专栏  ›  技术社区  ›  Anil Namde

HTTP缓存问题

  •  0
  • Anil Namde  · 技术社区  · 14 年前

    有人能告诉我以下情况吗?

    1. 如何测试它是否工作?还是不工作?
    2. 它是否还会停止对CSS和JS fils的缓存?
    3. 有人能详细说明这个缓存是如何工作的吗?在Windows中,我们有临时的Internet文件,它与此有关吗?

      Response.CacheControl = "no-cache, no-store";

      Response.AddHeader("Pragma", "no-cache");

      Response.Expires = -1;

    3 回复  |  直到 11 年前
        1
  •  3
  •   Brian Webster    11 年前

    Mark Nottingham's excellent tutorial

    Response.CacheControl = "no-cache, no-store";
    

    Response.CacheControl = "no-cache, no-store, must-revalidate";
    

     Response.AddHeader("Pragma", "no-cache");
    

    Manual

     Response.Expires = -1;
    

        2
  •  1
  •   m.edmondson    14 年前

        3
  •  0
  •   Albireo    14 年前