Re: cache problem

2005-01-07 Thread Erik Weber
ailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 10:22 AM To: 'Struts Users Mailing List' Subject: RE: cache problem Very interesting... Is this legal according to the HTML spec? Well. Let's see it's IE. A Microsoft product. Do they do anything according to an

RE: cache problem

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Chaikin, Yaakov Y. [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 10:22 AM > To: 'Struts Users Mailing List' > Subject: RE: cache problem > > > Very interesting... Is this legal according to the HTML spec?

Re: cache problem

2005-01-07 Thread PA
On Jan 07, 2005, at 18:21, Chaikin, Yaakov Y. wrote: Very interesting... Is this legal according to the HTML spec? Hmmm... more like cargo cult perhaps. -- http://zoe.nu/ http://alt.textdrive.com/ - To unsubscribe, e-mail: [EMAIL

RE: cache problem

2005-01-07 Thread Chaikin, Yaakov Y.
Very interesting... Is this legal according to the HTML spec? Yaakov. -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 11:49 AM To: Struts Users Mailing List Subject: Re: cache problem I don't know if this is your problem, but, to ensure

Re: cache problem

2005-01-07 Thread PA
On Jan 07, 2005, at 08:12, Metin Erksan wrote: i use "no-cache" option in html headers HTML headers are not the proper place to put HTTP headers. Even in Struts. Check HTTP 1/1 Header Field Definitions section 14.9 Cache-Control. http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html Another good

Re: cache problem

2005-01-07 Thread Erik Weber
Also, there is another approach. You can append a random String to your all your links. I like to use the current UNIX time. For example: http://www.foo.com/myPage?time=1105116823 This ensures that each link appears different to the browser even if the page is the same. Erik Erik Weber wrote:

RE: cache problem

2005-01-07 Thread Durham David R Jr Contr 805 CSPTS/SCE
> hi > i put below code in my jsp and solved problem.however > i use html-meta tags it doesnot work.when i use this > method it works. but i dont understand why this occurs > like this > > sincerely Any answer would likely be speculation, but I'm glad to hear it's working for you. > <% response

Re: cache problem

2005-01-07 Thread Erik Weber
I don't know if this is your problem, but, to ensure that the "Pragma" and "Expires" meta tags work properly (at least in IE), you have to put them at the top of your page AND at the bottom of your page (I use a second "head" tag after the closing "body" tag, repeating the meta tags). Erik Meti

RE: cache problem

2005-01-07 Thread Metin Erksan
hi i put below code in my jsp and solved problem.however i use html-meta tags it doesnot work.when i use this method it works. but i dont understand why this occurs like this sincerely <% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP

RE: cache problem

2005-01-07 Thread Jim Barrows
> -Original Message- > From: Metin Erksan [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 12:12 AM > To: user@struts.apache.org > Subject: cache problem > > > hi > i develop an insert/delete/update struts db application.i use > jdeveloper10g and running embedded oc4j of jdev