[EMAIL PROTECTED] ha scritto:
Kiuma,
As per Microsoft Support site, you will need to place another set of meta tags after the closing </body> tag. This has to do with the way the headers are evaluated and the caching algorithm utilized by IE. So your ending code would look something like this.
<HTML>
<HEAD>
<TITLE>---</TITLE>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
</HEAD>
<BODY>
Text in the Browser Window
</BODY>
<HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
</HEAD>
</HTML>
Keep in mind there is also an issue with the pragma tag in IE5 and you may need to set the following:
<META HTTP-EQUIV="Expires" CONTENT="-1">
There is a fairly good article at the below link wich explains it in more detail.
http://www.htmlgoodies.com/beyond/nocache.html#ie5
HTH,
Todd G. Nist
From: kiuma <[EMAIL PROTECTED]>
Date: 2003/01/15 Wed AM 08:00:12 EST
To: Struts Users Mailing List <[EMAIL PROTECTED]>
Subject: Re: AW: Refresh on MSIE, PLEASE HELP!! NOT SOLVED
Hirschmann, Bernhard ha scritto:
Sadly this doesn't solve the problem!
Does your browser use a http proxy? Maybe this is the reason.
Bernhard
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
.
No proxy set.
The fact is that with Mozilla works but not with MSIE.
I'm using tiles and I see this strange bheav.
I'm using tiles
so I have
<%@ taglib uri="/WEB-INF/struts-tiles.tld"
prefix="tiles" %>
<%@ taglib uri="/WEB-INF/struts-bean-el.tld"
prefix="bean-el" %>
<tiles:insert page="/skel.jsp" flush="true">
<tiles:put name='title' content='WebAppointments v1.0' direct='true'/>
<tiles:put name='topborder' content='/topborder.jsp'/>
<tiles:put name='menu' content='/secure/menu.jsp'/>
<tiles:put name='centerframe'
content='/secure/activitycenteredit_center.jsp'/>
</tiles:insert>
I write the server current time in '/secure/menu.jsp' and
'/secure/activitycenteredit_center.jsp' which contains the form.
but, while in men the time is update when i access the page,
/secure/activitycenteredit_center.jsp continue to hold old values.
in skel.jsp' header I've put
<meta http-equiv="pragma" content="no cache">
<meta http-equiv="cache-control" content="no store">
<meta http-equiv="expires" content="0">
The problem is only with MSIE!!
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
.
Cut & paste but the result is the same!
P.s. I'm using JBoss3.0.4 + Jetty + Struts_b3
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>