zoukankan      html  css  js  c++  java
  • 返回上一页自动刷新页面

    1 Response.Expires=-1
    2
    3 Response.ExpiresAbsolute=Now()-1
    4
    5 Response.cachecontrol="no-cache"
    6  

    Response Properties

    Buffer Response.Buffer = true
    Allows for the buffering of output
    CacheControl Response.CacheControl="Public"
    Sets Cache to "Public" or "Private"
    CharSet Response.CharSet="windows-1252"
    Sets the ISO character set
    ContentType Response.ContentType="text/HTML"
    Specifies the output mime type (text/html, text/plain, GIF, JPG)
    Expires Response.Expires=60
    Sets page expiration in minutes
    ExpiresAbsolute Response.ExpiresAbsolute=#January 31, 2003 13:00:00#
    Sets time certain for page to expire
    IsClientConnected if (Response.IsClientConnected==true) { }
    Determines if client is still connected
    PICS ((See Explanation))
    Platform for Internet Content Selection
    Status Response.Status="401 Unauthorized"
    Sets Page Status


    详细出处参考:http://www.jb51.net/article/7435.htm

  • 相关阅读:
    lamp
    ssh 交互脚本
    mysql 备份检测主从脚本
    RANDOM 猜数字脚本
    ansible+playbook 搭建lnmp环境
    集群搭建
    grafana
    nginx lnmp搭建
    shell 基础(1): 变量
    seq 增量输出命令
  • 原文地址:https://www.cnblogs.com/sosoman/p/1765885.html
Copyright © 2011-2022 走看看