Hi saweens
Here is a way to do it with all ASP
you can put this in a file and include it at the top of any page that you don't want to cache.
<%
Response.Expires = 15
Response.ExpiresAbsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
for what it is worth I believe I got this code from user vasah20.
Hope it helps you also.