PROPERTY: Response.Expires
The Expires property specifies a length of time in minutes before a response page cached on the browser expires.
The first line of code causes the page to be refreshed (reloaded) every time it is accessed,
rather than being stored in a cache.
In the second example, if the user returns to this page before the 15 minutes are up,
the cached version of the page will be displayed.
<% Response.Expires = 0 %>
<% Response.Expires = 15 %>
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information
|