ASP practical skills to force refresh web pages
Author:Eve Cole
Update Time:2009-06-24 17:27:27
<%
'Mandatory refresh of random verification code
'Let the random verification code be automatically refreshed every time you press the back button of IE to return to the login page.
Response.expires=-1
Response.AddHeader"pragma","no-cache"
Response.AddHeader"cache-control","no-store"
%>