I have a web application with over 20 pages that are used. In each of these pages I include a file to build a toolbar on those pages.
If I add the following code to the include file, will this prevent caching for the main page or just the include file?
<%
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "No-Store"
%>
??
thanks
Maboo59
If I add the following code to the include file, will this prevent caching for the main page or just the include file?
<%
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "No-Store"
%>
??
thanks
Maboo59