The Expires property indicates the amount of time that the page can be cached by the user's browser.
SyntaxResponse.Expires = (number) |
number | Specifies the number of minutes until the page expires. |
Setting the Expires property adds then HTTP header Expires to the response. |
<% Response.Expires = 30 ' Sets the page to expire in 30 minutes %> |