[thelist] Session Variables ... Solved!

Rob Smith rob.smith at THERMON.com
Mon Mar 3 15:59:01 CST 2003


Have you tried adding
  Response.Expires = -5000
somewhere near the top of your page (i.e. before anything has been written)?

<><><><><><><><><><><><>

(Singing) Yahhhooooooo!! thanks Jason.

<tip type="Response.Expires What is it?" author="Rob.Smith">
The Expires property sets how long (in minutes) a page will be cached on a
browser before it expires. If a user returns to the same page before it
expires, the cached version is displayed.

Syntax
response.Expires[=number]

Parameter Description
number  The time in minutes before the page expires

Example
The following code indicates that the page will never be cached:

<%response.Expires=-1%>
:-) setting response.Expires=-5000 still indicates the page will never be
cached.
</tip>



More information about the thelist mailing list