View Single Post
  #2 (permalink)  
Old 08-03-04, 02:01 AM
chirag's Avatar
chirag chirag is offline
Newbie Coder
 
Join Date: May 2004
Posts: 93
Thanks: 0
Thanked 0 Times in 0 Posts
Lightbulb

try this....
Add following code at top of each asp page you don't want to be cached......

<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>

Last edited by chirag; 08-03-04 at 02:03 AM.
Reply With Quote