Hi there!!,
You may try giving the Response.Expires = -999 as the page expiry statement in order to make the page expire as soon as it is loaded, forcing the browser to load it afresh everytime. Also, you may set the No Cache attribute for the page so that neither the Proxy server nor the Local Computer caches your pages.
Main Topics
Browse All Topics





by: kishokPosted on 2000-09-10 at 01:27:17ID: 4250064
I think it is the caching problem. some browsers may display the cached version of page if there are no changes.
To solve this problem, You can use
<% Response.Expires = 0 %>
statement to avoid the caching on the user agent.
You please include the above statement in your code and try it.