返回上一页自动刷新页面

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

原文地址:https://www.cnblogs.com/sosoman/p/1765885.html