if you read the 4 to 5 posts previously you would found the answer, i asked the same question and thanks to Peter, the prob was solved. take a look at his reply:
are you assuming that a user will have your page open continuously for more than 3 minutes (which would probably be unlikely)? If so, you could use a meta refresh:
<META HTTP-EQUIV=Refresh CONTENT="180">
Otherwise, the data should refresh every time the user opens the page.
To let the users know how up to date / out of date the data is, you could put the date & time on the page, such as:
<p>Page created at <% =Now() %>. <a href="#">Refresh</a></p>
|