Displaying Source Code(s)
|
|
Set how many minutes a page will be cached
--------------------------------------------------------------------------------
Description : This example demonstrates the Expires property.
This property sets how long a page will be cached in a browser
before it expires. If the user returns to the same page before
the specified number of minutes have elapsed, the cached version
is displayed. If you set minutes to 0, the page will never be
cached on a browser.
<%Response.Expires=0%>
<html>
<body>
<p>This page will be refreshed With Each access!</p>
</body>
</html> |
|
|