Hi Ben....
put the following before any
html on each page you dont want cached:-
- Code: Select all
<%
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
%>
There are several other headers that will do the same thing, but this should work.