//防止刷新
        Response.AddHeader("Pragma", "No-Cache");
        Response.Buffer = true;
        Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1);
        Response.Expires = 0;
        Response.CacheControl = "no-cache";

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
猜你喜欢
  • 2021-06-20
  • 2022-12-23
  • 2021-08-22
  • 2021-09-30
  • 2022-12-23
  • 2021-11-04
  • 2022-12-23
相关资源
相似解决方案