• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

No Cache in IE

 
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
is there anything that will convince IE not to cache a page??
i tried these http tags but it still doesn't work the way it shld, on pressing the back button the cached version of the page is displayed.
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="expires" CONTENT="Wed, 10 Jul 1996 08:21:57 GMT">
Anyone?
-manav
 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can try this one too...
<meta http-equiv="Expires" content="-1">
But keep all the above meta tags at the end of the html file too.
That is after the </body> tag and before the </html> tag at the end of the file within <head> and </head> tags.
HTH.
Srini.
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One way of setting No-Cache is :
Open IE, go to Tools, Internet Options, In General Tab, In Temporary Internet Files Section, Click on Settings button and Check the check box that says 'Every visit to the page'.
The delimit is this has to be set in all the client machines if yours is a web application and I know that this is not a good way.
Tell me What kind of application u are working in?
 
manav kher
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yeah i wish i could go to every client machine and do that !
-manav
 
reply
    Bookmark Topic Watch Topic
  • New Topic