context.Response.ContentType = "text/plain"; 
            context.Response.Buffer = true; 
            context.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); 
            context.Response.AddHeader("pragma", "no-cache"); 
            context.Response.AddHeader("cache-control", ""); 
            context.Response.CacheControl = "no-cache";

以上是C#里面的代码、...

相关文章:

  • 2022-12-23
  • 2022-01-07
  • 2021-09-06
  • 2022-12-23
  • 2021-07-21
  • 2021-04-09
  • 2021-08-02
猜你喜欢
  • 2021-08-30
  • 2021-12-09
  • 2021-05-20
  • 2022-12-23
  • 2021-07-11
  • 2022-12-23
相关资源
相似解决方案