M
Meron Lavie
We have written an asp.net app, which is apparently being cached by various
British ISP's, and this is recking havoc with our app, as the proxy servers
apparently are disregarding the session id within the URL (we work
cookieless), such as www.widgets.com/(asdiufya09r8)/mypage.aspx, and thus
can not identify to which user/session each page belongs.
We have tried all the textbook solutions, such as:
<%@ outputcache duration="1" varybyparam="none" Location="None" %>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
Response.Cache.SetExpires(DateTime.Now.AddMonths(-1));
<META HTTP-EQUIV="Cache-Control" CONTENT="Public">
<meta http-equiv="Cache-Control" content="no-store">
<meta http-equiv="Cache-Control" content="must-revalidate">
We'd be grateful for any suggestions how to absolutely block caching.
TIA,
Meron Lavie
British ISP's, and this is recking havoc with our app, as the proxy servers
apparently are disregarding the session id within the URL (we work
cookieless), such as www.widgets.com/(asdiufya09r8)/mypage.aspx, and thus
can not identify to which user/session each page belongs.
We have tried all the textbook solutions, such as:
<%@ outputcache duration="1" varybyparam="none" Location="None" %>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
Response.Cache.SetExpires(DateTime.Now.AddMonths(-1));
<META HTTP-EQUIV="Cache-Control" CONTENT="Public">
<meta http-equiv="Cache-Control" content="no-store">
<meta http-equiv="Cache-Control" content="must-revalidate">
We'd be grateful for any suggestions how to absolutely block caching.
TIA,
Meron Lavie