I have made a small shopping basket in asp which is having a cacheing problem. Everything works fine on the first visit to the site, you can add and remove items from the basket np but once you close the browser and the return the second time there is a phantom iteam in the basket. Once you go to the checkout it is not there. I have made a nocache.asp file
ie
<%
Response.Expires = 15
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "private"
%>
and included it in all my asp pages as
<!-- #include file="nocache.asp" -->
but the iteam still appears
if you control F5 (clear the cache) the item dissapears
any1 got any ideas???